feat(nvim): add neovide as extra

This commit is contained in:
Sergio Laín 2024-01-05 10:57:07 +01:00
parent e0f044ac29
commit c40125f996
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
2 changed files with 3 additions and 4 deletions

View file

@ -3,9 +3,6 @@
-- Add any additional options here
local opt = vim.g
-- Neovide options
require("config.neovide")
-- Optimizations on startup
vim.loader.enable()

View file

@ -1,5 +1,5 @@
if not vim.g.neovide then
return
return {}
end
RefreshGuiFont = function()
@ -35,3 +35,5 @@ vim.g.neovide_cursor_antialiasing = false
vim.g.neovide_cursor_vfx_mode = "pixiedust"
vim.opt.winblend = 20
return {}