Skip to content

Commit

Permalink
feat(terminal): highlight TermCursor and TermCursorNC (#749)
Browse files Browse the repository at this point in the history
* feat(terminal): highlight `TermCursor` and `TermCursorNC`

* feat(terminal): highlight `TermCursor` and `TermCursorNC`

* feat(terminal): highlight `TermCursor` and `TermCursorNC`

* fix(terminal): make cursor follow documented style
  • Loading branch information
vollowx authored Aug 9, 2024
1 parent 2990ca9 commit 548b2a2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lua/catppuccin/groups/editor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ function M.get()
TabLine = { bg = C.mantle, fg = C.surface1 }, -- tab pages line, not active tab page label
TabLineFill = {}, -- tab pages line, where there are no labels
TabLineSel = { fg = C.green, bg = C.surface1 }, -- tab pages line, active tab page label
TermCursor = { fg = C.base, bg = C.rosewater }, -- cursor in a focused terminal
TermCursorNC = { fg = C.base, bg = C.overlay2 }, -- cursor in unfocused terminals
Title = { fg = C.blue, style = { "bold" } }, -- titles for output from ":set all", ":autocmd" etc.
Visual = { bg = C.surface1, style = { "bold" } }, -- Visual mode selection
VisualNOS = { bg = C.surface1, style = { "bold" } }, -- Visual mode selection when vim is "Not Owning the Selection".
Expand Down

0 comments on commit 548b2a2

Please sign in to comment.