diff --git a/colors/zenbones.vim b/colors/zenbones.vim index 8279ddb..1d9b2e8 100644 --- a/colors/zenbones.vim +++ b/colors/zenbones.vim @@ -211,6 +211,7 @@ highlight! link TabLineFill StatusLineNC highlight! link TelescopeBorder FloatBorder highlight! link TelescopeSelection CursorLine highlight! link TermCursor Cursor +highlight! link TermCursorNC lCursor highlight! link TroubleNormal Function highlight! link TroubleSource Constant highlight! link TroubleText Function diff --git a/lua/zenbones/init.lua b/lua/zenbones/init.lua index 9af105d..9cc6951 100644 --- a/lua/zenbones/init.lua +++ b/lua/zenbones/init.lua @@ -50,6 +50,7 @@ local theme = lush(function() lCursor { Cursor, bg = Cursor.bg.li(20) }, -- the character under the cursor when |language-mapping| is used (see 'guicursor') -- CursorIM { }, -- like Cursor, but used when in IME mode |CursorIM| TermCursor { Cursor }, -- cursor in a focused terminal + TermCursorNC { lCursor }, -- cursor in an unfocused terminal CursorLine { bg = Normal.bg.da(4) }, -- Screen-line at the cursor, when 'cursorline' is set. Low-priority if foreground (ctermfg OR guifg) is not set. CursorColumn { CursorLine }, -- Screen-column at the cursor, when 'cursorcolumn' is set. diff --git a/lua/zenflesh/init.lua b/lua/zenflesh/init.lua index 4cbd1c9..a5afbfa 100644 --- a/lua/zenflesh/init.lua +++ b/lua/zenflesh/init.lua @@ -161,7 +161,7 @@ local theme = lush(function() -- These groups are for the native LSP client. Some other LSP clients may -- use these groups, or use their own. Consult your LSP client's -- documentation. - + LspReferenceText { ColorColumn }, -- used for highlighting "text" references LspReferenceRead { ColorColumn }, -- used for highlighting "read" references LspReferenceWrite { ColorColumn }, -- used for highlighting "write" references