diff --git a/lua/core/neovide.lua b/lua/core/neovide.lua index 2e59bfc..f749364 100644 --- a/lua/core/neovide.lua +++ b/lua/core/neovide.lua @@ -25,6 +25,11 @@ if vim.g.neovide then vim.g.neovide_no_idle = true vim.g.neovide_remember_window_size = true vim.g.neovide_touch_drag_timeout = 0.17 + vim.g.neovide_show_border = false + vim.g.neovide_theme = "auto" + vim.g.neovide_confirm_quit = true + vim.g.neovide_remember_window_size = true + vim.g.neovide_cursor_smooth_blink = true -- animation config --vim.g.neovide_scroll_animation_length = 0.3 --vim.g.neovide_cursor_animation_length = 0.13 diff --git a/lua/user/options.lua b/lua/user/options.lua index 0d00bc0..bafe28f 100644 --- a/lua/user/options.lua +++ b/lua/user/options.lua @@ -39,8 +39,8 @@ local options = { writebackup = false, -- Disable making a backup before overwriting a file -- minimal number of screen columns either side of cursor if wrap is `false` -- guifont = "monospace:h17", -- the font used in graphical neovim applications - guifont = "SauceCodePro Nerd Font:h17", -- the font used in graphical neovim applications - -- guifont = "Hasklug Nerd Font:h16", -- the font used in graphical neovim applications + -- guifont = "SauceCodePro Nerd Font:h17", -- the font used in graphical neovim applications + guifont = "Hasklug Nerd Font:h15", -- the font used in graphical neovim applications -- guifont = "Hack Nerd Font:h17", -- the font used in graphical neovim applications whichwrap = "bs<>[]hl", -- which "horizontal" keys are allowed to travel to prev/next line -- which "horizontal" keys are allowed to travel to prev/next line }