We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
settings.gui_config
1 parent 08f2dda commit c10f3d6Copy full SHA for c10f3d6
lua/core/init.lua
@@ -32,7 +32,13 @@ local leader_map = function()
32
end
33
34
local gui_config = function()
35
- vim.api.nvim_set_option_value("guifont", settings.gui_config.font_name .. ":h" .. settings.gui_config.font_size, {})
+ if next(settings.gui_config) then
36
+ vim.api.nvim_set_option_value(
37
+ "guifont",
38
+ settings.gui_config.font_name .. ":h" .. settings.gui_config.font_size,
39
+ {}
40
+ )
41
+ end
42
43
44
local neovide_config = function()
0 commit comments