mirror of
https://github.com/harivansh-afk/nvim.git
synced 2026-04-15 12:03:52 +00:00
21 lines
623 B
Lua
21 lines
623 B
Lua
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,
|
|
},
|
|
}
|