Add neovide config
This commit is contained in:
parent
c10372c6e7
commit
434f024486
5
init.lua
5
init.lua
|
@ -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
8
lua/neovide.lua
Normal 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
|
Loading…
Reference in a new issue