✨ feat(nvim): add neovide as extra
This commit is contained in:
parent
e0f044ac29
commit
c40125f996
2 changed files with 3 additions and 4 deletions
|
@ -3,9 +3,6 @@
|
||||||
-- Add any additional options here
|
-- Add any additional options here
|
||||||
local opt = vim.g
|
local opt = vim.g
|
||||||
|
|
||||||
-- Neovide options
|
|
||||||
require("config.neovide")
|
|
||||||
|
|
||||||
-- Optimizations on startup
|
-- Optimizations on startup
|
||||||
vim.loader.enable()
|
vim.loader.enable()
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
if not vim.g.neovide then
|
if not vim.g.neovide then
|
||||||
return
|
return {}
|
||||||
end
|
end
|
||||||
|
|
||||||
RefreshGuiFont = function()
|
RefreshGuiFont = function()
|
||||||
|
@ -35,3 +35,5 @@ vim.g.neovide_cursor_antialiasing = false
|
||||||
vim.g.neovide_cursor_vfx_mode = "pixiedust"
|
vim.g.neovide_cursor_vfx_mode = "pixiedust"
|
||||||
|
|
||||||
vim.opt.winblend = 20
|
vim.opt.winblend = 20
|
||||||
|
|
||||||
|
return {}
|
Loading…
Add table
Reference in a new issue