nvim/lua/plugins/smear-cursor.lua
2025-11-10 14:14:27 -05:00

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,
},
}