diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-05-22 13:41:04 +0200 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-05-22 13:41:04 +0200 |
| commit | c5661a3b80d0bb6cbee5f817b6ce636eb9deb208 (patch) | |
| tree | c9f699b5cf826a72f28523f22f354e1e6b227cf5 | |
| parent | 733e80b253ec149512d29303d1cea37c7474ded4 (diff) | |
| download | dotfiles-c5661a3b80d0bb6cbee5f817b6ce636eb9deb208.tar.gz dotfiles-c5661a3b80d0bb6cbee5f817b6ce636eb9deb208.zip | |
misc(nvim): set tabline fg to yellow
| -rw-r--r-- | .config/nvim/plugin/40-colors.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/nvim/plugin/40-colors.lua b/.config/nvim/plugin/40-colors.lua index abb3bdb..f7abd94 100644 --- a/.config/nvim/plugin/40-colors.lua +++ b/.config/nvim/plugin/40-colors.lua @@ -56,8 +56,9 @@ local function adjust_highlight() 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 }) + vim.api.nvim_set_hl(0, "TabLine", { fg = solarized_colors.yellow, bold = true }) if vim.o.background == "light" then - vim.api.nvim_set_hl(0, "TabLineSel", { bg = "#edffd5" }) + vim.api.nvim_set_hl(0, "TabLineSel", { bg = "#edffd5", fg = solarized_colors.yellow, bold = true }) vim.api.nvim_set_hl(0, "Cursorline", { bg = "#edffd5" }) elseif vim.o.background == "dark" then vim.api.nvim_set_hl(0, "TabLineSel", { bg = "#043624" }) |
