feat(neovide): enable ripple effects for cursor
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m15s

This commit is contained in:
Price Hiller 2024-05-12 02:14:35 -05:00
parent 5cd8d94536
commit 97784a2d66
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -14,6 +14,10 @@ vim.g.neovide_light_radius = 5
vim.g.neovide_remember_window_size = false
vim.g.neovide_fullscreen = false
-- Cursor goodiness
vim.g.neovide_cursor_vfx_mode = "ripple"
vim.g.neovide_cursor_vfx_particle_lifetime = 0.3
-- Allow clipboard copy paste in neovim
vim.keymap.set({ "n", "v" }, "<D-v>", '"+P') -- Paste normal and visual mode
vim.keymap.set({ "i", "c" }, "<D-v>", "<C-R>+") -- Paste insert and command mode