1
0

add neovide options

This commit is contained in:
Rokas Puzonas 2023-05-11 17:30:35 +03:00
parent e075db783d
commit 55016a51e2

View File

@ -106,3 +106,9 @@ opt('softtabstop', tab_size, buffer)
-- Place splits below and to the right by default -- Place splits below and to the right by default
opt('splitbelow', true) opt('splitbelow', true)
opt('splitright', true) opt('splitright', true)
-- Scale neovide a bit
if vim.g.neovide then
vim.g.neovide_scale_factor = 0.7
vim.g.neovide_hide_mouse_when_typing = true
end