mirror of
https://github.com/harivansh-afk/nvim.git
synced 2026-04-15 09:01:16 +00:00
add cursor animate
This commit is contained in:
parent
161e0c20e6
commit
b88e672daa
2 changed files with 28 additions and 5 deletions
21
lua/plugins/smear-cursor.lua
Normal file
21
lua/plugins/smear-cursor.lua
Normal 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,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue