Skip to content

Commit

Permalink
docs: add instructions for smear in insert mode
Browse files Browse the repository at this point in the history
  • Loading branch information
sphamba committed Jan 21, 2025
1 parent 1cf9044 commit 31eff34
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ return {
-- Set to `true` if your font supports legacy computing symbols (block unicode symbols).
-- Smears will blend better on all backgrounds.
legacy_computing_symbols_support = false,

-- Smear cursor in insert mode.
-- See also `vertical_bar_cursor_insert_mode` and `distance_stop_animating_vertical_bar`.
smear_insert_mode = true,
},
}
```
Expand Down
3 changes: 2 additions & 1 deletion lua/smear_cursor/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ M.legacy_computing_symbols_support = false
-- Set to `true` if your cursor is a vertical bar in normal mode.
M.vertical_bar_cursor = false

-- Smear cursor in insert mode
-- Smear cursor in insert mode.
-- See also `vertical_bar_cursor_insert_mode` and `distance_stop_animating_vertical_bar`.
M.smear_insert_mode = true

-- Set to `true` if your cursor is a vertical bar in insert mode.
Expand Down

0 comments on commit 31eff34

Please sign in to comment.