diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-06-01 17:42:06 +0200 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-06-01 18:55:16 +0200 |
| commit | 0a237d28bdcac24a0783f85b06600663d9773876 (patch) | |
| tree | 13c488352b8d0680b03779e0d856d61578f9ab5e | |
| parent | 57abc78908f6ed752b1081f94f0a24d264c7afec (diff) | |
| download | dotfiles-0a237d28bdcac24a0783f85b06600663d9773876.tar.gz dotfiles-0a237d28bdcac24a0783f85b06600663d9773876.zip | |
misc(nvim): remove dead code
The Cursorline highlight is overwritten by `set_cursorline_hl()`.
| -rw-r--r-- | .config/nvim/plugin/40-colors.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/.config/nvim/plugin/40-colors.lua b/.config/nvim/plugin/40-colors.lua index a57ae4e..ae5f085 100644 --- a/.config/nvim/plugin/40-colors.lua +++ b/.config/nvim/plugin/40-colors.lua @@ -58,10 +58,8 @@ local function adjust_highlight() 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", 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" }) - vim.api.nvim_set_hl(0, "Cursorline", { bg = "#043624" }) end end end |
