[nvim] Move setting the GUI font to init_gui() from _init_neovide()
Make a font family list that includes Berkeley Mono, SF Mono, and Courier New.
This commit is contained in:
parent
a87f399939
commit
2fea369110
1 changed files with 1 additions and 1 deletions
|
|
@ -9,12 +9,12 @@ local function _init_neovide()
|
||||||
vim.g.neovide_position_animation_length = 0
|
vim.g.neovide_position_animation_length = 0
|
||||||
vim.g.neovide_scroll_animation_length = 0
|
vim.g.neovide_scroll_animation_length = 0
|
||||||
|
|
||||||
vim.o.guifont = "InputMonoCondensed:h16"
|
|
||||||
|
|
||||||
vim.cmd [[ colorscheme lunaperche ]]
|
vim.cmd [[ colorscheme lunaperche ]]
|
||||||
end
|
end
|
||||||
|
|
||||||
function init_gui()
|
function init_gui()
|
||||||
|
vim.o.guifont = "Berkeley Mono,Input Mono Condensed,SF Mono,Courier New:h18"
|
||||||
_init_neovide()
|
_init_neovide()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue