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