feat: disable smear cursor
This commit is contained in:
parent
cfe153c47b
commit
1a5d5bc4a0
1 changed files with 17 additions and 16 deletions
|
|
@ -1,23 +1,24 @@
|
||||||
return {
|
return {
|
||||||
"sphamba/smear-cursor.nvim",
|
"sphamba/smear-cursor.nvim",
|
||||||
|
enabled = false,
|
||||||
|
|
||||||
opts = {
|
opts = {
|
||||||
-- Smear cursor when switching buffers or windows.
|
-- Smear cursor when switching buffers or windows.
|
||||||
smear_between_buffers = true,
|
smear_between_buffers = true,
|
||||||
|
|
||||||
-- Smear cursor when moving within line or to neighbor lines.
|
-- Smear cursor when moving within line or to neighbor lines.
|
||||||
-- Use `min_horizontal_distance_smear` and `min_vertical_distance_smear` for finer control
|
-- Use `min_horizontal_distance_smear` and `min_vertical_distance_smear` for finer control
|
||||||
smear_between_neighbor_lines = true,
|
smear_between_neighbor_lines = true,
|
||||||
|
|
||||||
-- Draw the smear in buffer space instead of screen space when scrolling
|
-- Draw the smear in buffer space instead of screen space when scrolling
|
||||||
scroll_buffer_space = true,
|
scroll_buffer_space = true,
|
||||||
|
|
||||||
-- Set to `true` if your font supports legacy computing symbols (block unicode symbols).
|
-- Set to `true` if your font supports legacy computing symbols (block unicode symbols).
|
||||||
-- Smears will blend better on all backgrounds.
|
-- Smears will blend better on all backgrounds.
|
||||||
legacy_computing_symbols_support = false,
|
legacy_computing_symbols_support = false,
|
||||||
|
|
||||||
-- Smear cursor in insert mode.
|
-- Smear cursor in insert mode.
|
||||||
-- See also `vertical_bar_cursor_insert_mode` and `distance_stop_animating_vertical_bar`.
|
-- See also `vertical_bar_cursor_insert_mode` and `distance_stop_animating_vertical_bar`.
|
||||||
smear_insert_mode = true,
|
smear_insert_mode = true,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue