add cursor animate

This commit is contained in:
Harivansh Rathi 2025-11-10 14:14:27 -05:00
parent 161e0c20e6
commit b88e672daa
2 changed files with 28 additions and 5 deletions

View file

@ -0,0 +1,21 @@
return {
"sphamba/smear-cursor.nvim",
lazy = false,
priority = 1000,
opts = {
-- Cursor color. Defaults to Cursor GUI color if not set
cursor_color = "#d3cdc3",
-- Background color. Defaults to Normal GUI background color if not set
normal_bg = "#282828",
-- Smear cursor when switching buffers or windows
smear_between_buffers = true,
-- Smear cursor when moving within line or to neighbor lines
smear_between_neighbor_lines = true,
-- Set to `true` if your font supports legacy computing symbols (block unicode symbols)
legacy_computing_symbols_support = false,
},
}