Add neovide config

This commit is contained in:
Evie Litherland-Smith 2022-11-30 14:45:22 +00:00
parent c10372c6e7
commit 434f024486
2 changed files with 13 additions and 0 deletions

View file

@ -9,3 +9,8 @@ require 'keymaps'
-- Remaining vim commands to be converted to lua
require 'vimcommands'
-- Neovide specific config, only used if Neovide is runnning
if vim.g.neovide then
require 'neovide'
end

8
lua/neovide.lua Normal file
View file

@ -0,0 +1,8 @@
-- Neovide options
vim.g.neovide_transparency = 0.95
vim.g.neovide_confirm_quit = true
vim.g.neovide_fullscreen = false
vim.g.neovide_remember_window_size = false
vim.g.neovide_cursor_animation_length = 0.0
-- vim.g.neovide_cursor_trail_size = 0.8
vim.g.neovide_cursor_antialiasing = true