AutoYADM commit: 2024-12-15 23:30:01

This commit is contained in:
Daniel Fichtinger 2024-12-15 23:30:01 -05:00
parent 5f4533524b
commit 4829cd7c07
3 changed files with 49 additions and 4 deletions

View file

@ -1,5 +1,17 @@
-- bootstrap lazy.nvim, LazyVim and your plugins
require("config.lazy")
if vim.g.neovide then
require("neovide-config").setup()
local nv_opts = {
cursor = {
animation_length = 0.05,
trail_size = 0.5,
animate_command_line = false,
},
animations = {
position_animation_length = 0.10,
scroll_animation_length = 0.1,
hide_mouse_when_typing = true,
},
}
require("neovide-config").setup(nv_opts)
end