From 0a237d28bdcac24a0783f85b06600663d9773876 Mon Sep 17 00:00:00 2001 From: Thomas Vanbesien Date: Mon, 1 Jun 2026 17:42:06 +0200 Subject: misc(nvim): remove dead code The Cursorline highlight is overwritten by `set_cursorline_hl()`. --- .config/nvim/plugin/40-colors.lua | 2 -- 1 file changed, 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 -- cgit v1.3.1