diff options
| author | Robert Günzler <r@gnzler.io> | 2022-06-15 04:51:20 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2022-06-15 04:51:20 +0200 |
| commit | 423c0e186dbc5c2fa3406cd4f1377f0138d0f54c (patch) | |
| tree | dcda473bb4197a4d3a8ab6ec938f39c1afa59fdc /.vim/lua/theme | |
| parent | 60db657343eb2d4aa6e69cec4da15bfe4955b42a (diff) | |
vim: make sure hl-Substitute can show whitespace changes
Diffstat (limited to '.vim/lua/theme')
| -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 |