feat(terminal): highlight TermCursor and TermCursorNC (#749)

* 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
This commit is contained in:
Vollow 2024-08-09 10:19:39 +08:00 committed by GitHub
parent 2990ca9578
commit 548b2a2541
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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".