[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:
Eryn Wells 2025-04-18 09:55:11 -07:00
parent a87f399939
commit 2fea369110

View file

@ -9,12 +9,12 @@ local function _init_neovide()
vim.g.neovide_position_animation_length = 0
vim.g.neovide_scroll_animation_length = 0
vim.o.guifont = "InputMonoCondensed:h16"
vim.cmd [[ colorscheme lunaperche ]]
end
function init_gui()
vim.o.guifont = "Berkeley Mono,Input Mono Condensed,SF Mono,Courier New:h18"
_init_neovide()
end