diff options
Diffstat (limited to '.vim/lua')
| -rw-r--r-- | .vim/lua/theme/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.vim/lua/theme/init.lua b/.vim/lua/theme/init.lua index 5e85415..dbcca78 100644 --- a/.vim/lua/theme/init.lua +++ b/.vim/lua/theme/init.lua @@ -51,7 +51,7 @@ local colors = lush(function() -- SpellRare { }, -- Word that is recognized by the spellchecker as one that is hardly ever used. |spell| Combined with the highlighting used otherwise. StatusLine { fg = hsl(p.bright.white), bg = 'none', gui = 'bold' }, -- status line of current window StatusLineNC { fg = hsl(p.bright.white), bg = hsl(p.dim.white), gui = 'none' }, -- status lines of not-current windows Note: if this is equal to "StatusLine" Vim will use "^^^" in the status line of the current window. - Substitute { fg = hsl(p.normal.blue) }, -- |:substitute| replacement text highlighting + Substitute { fg = hsl(p.bright.white), bg = hsl(p.normal.blue), gui = 'bold' }, -- |:substitute| replacement text highlighting TabLine { fg = hsl(p.dim.white) }, -- tab pages line, not active tab page label TabLineFill { StatusLineNC }, -- tab pages line, where there are no labels TabLineSel { fg = hsl(p.bright.white), gui = 'bold' }, -- tab pages line, active tab page label |