diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2023-05-10 01:48:36 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2023-05-10 01:48:36 +0200 |
commit | 5d7fec862868b39a2d004c4945b127253efdc8b6 (patch) | |
tree | 3e3b025908f785cd9f32196a00bc1931f0eb7b96 /lua/no-clown-fiesta/groups | |
parent | 8f497ead8c7d357d980bcb7c663b39b4d4906d3d (diff) |
Fix term cursor
Diffstat (limited to 'lua/no-clown-fiesta/groups')
-rw-r--r-- | lua/no-clown-fiesta/groups/highlights.lua | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/lua/no-clown-fiesta/groups/highlights.lua b/lua/no-clown-fiesta/groups/highlights.lua index 6d1a1bf..17de0c3 100644 --- a/lua/no-clown-fiesta/groups/highlights.lua +++ b/lua/no-clown-fiesta/groups/highlights.lua @@ -53,8 +53,16 @@ function M.highlight(palette, opts) Cursor = { fg = palette.cursor_fg, bg = palette.cursor_bg }, lCursor = { fg = palette.cursor_fg, bg = palette.cursor_bg }, CursorIM = { fg = palette.cursor_fg, bg = palette.cursor_bg }, - TermCursor = { fg = palette.cursor_fg, bg = palette.cursor_bg }, - TermCursorNC = { fg = palette.cursor_fg, bg = palette.cursor_bg }, + TermCursor = { + fg = palette.cursor_fg, + bg = palette.cursor_bg, + reverse = false, + }, + TermCursorNC = { + fg = palette.cursor_fg, + bg = palette.cursor_bg, + reverse = false, + }, Conceal = { fg = palette.accent }, Directory = { fg = palette.blue }, SpecialKey = { fg = palette.blue }, |