diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-05-22 13:14:15 +0200 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-05-22 13:40:39 +0200 |
| commit | c925fefe456a9819a511cf11ea64a54dc0956242 (patch) | |
| tree | 49aa09a0445ec2107b168e9956bafac75c747fae /plugin/40-colors.lua | |
| parent | 550ba704b6d0fabd3ac0077c2c1067029c8a0264 (diff) | |
| download | nvim-config-c925fefe456a9819a511cf11ea64a54dc0956242.tar.gz nvim-config-c925fefe456a9819a511cf11ea64a54dc0956242.zip | |
misc(nvim): set winbar to show cwd and path
Diffstat (limited to 'plugin/40-colors.lua')
| -rw-r--r-- | plugin/40-colors.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugin/40-colors.lua b/plugin/40-colors.lua index 914ec2b..abb3bdb 100644 --- a/plugin/40-colors.lua +++ b/plugin/40-colors.lua @@ -54,6 +54,8 @@ local function adjust_highlight() if vim.g.colors_name == "solarized" then vim.api.nvim_set_hl(0, "EndOfBuffer", { fg = solarized_colors.base0, update = true }) vim.api.nvim_set_hl(0, "MatchParen", { link = "CurSearch" }) + vim.api.nvim_set_hl(0, "WinBarCwd", { fg = solarized_colors.blue, italic = true }) + vim.api.nvim_set_hl(0, "WinBarFile", { italic = true }) if vim.o.background == "light" then vim.api.nvim_set_hl(0, "TabLineSel", { bg = "#edffd5" }) vim.api.nvim_set_hl(0, "Cursorline", { bg = "#edffd5" }) |
