diff options
-rw-r--r-- | lua/meltdown/highlights.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/meltdown/highlights.lua b/lua/meltdown/highlights.lua index b0af0d5..fa473e6 100644 --- a/lua/meltdown/highlights.lua +++ b/lua/meltdown/highlights.lua @@ -18,7 +18,7 @@ local function highlights(colors) ["DarkFg"] = { fg = colors.bg_3, bg = colors.bg_1 }, ["DarkGray"] = { fg = colors.dark_grey }, ["StatusLine"] = { fg = colors.red, bg = borders, bold = true }, - ["Title"] = { fg = colors.orange, bg = colors.lighter_grey, bold = true }, + ["Title"] = { fg = colors.orange, bg = colors.dark_grey, bold = true }, ["Visual"] = { fg = colors.black, bg = colors.gold_2 }, ["CursorLineNr"] = { fg = colors.red, bg = colors.bg_4}, ["StatusLineNC"] = { fg = colors.lighter_grey, bg = colors.black, bold = true }, @@ -26,6 +26,7 @@ local function highlights(colors) ["TabLine"] = { fg = colors.near_white, bg = colors.bg_4}, ["Search"] = { bg = colors.bg_5, fg = colors.near_white }, ["SignColumn"] = { bg = colors.bg_1}, + ["ColorColumn"] = { bg = colors.bg_1}, ["LineNrAbove"] = { fg = colors.bg_6, bg = colors.bg_1, italic = true }, ["LineNr"] = { fg = colors.bg_6, bg = colors.bg_1, bold = true }, ["LineNrBelow"] = { fg = colors.bg_6, bg = colors.bg_1, italic = true }, @@ -136,7 +137,6 @@ local function highlights(colors) ["CmpZsh"] = { fg = colors.salmon, bg = colors.midnight}, ["DiagnosticInfo"] = { fg = colors.teal_3 }, ["DiagnosticError"] = { fg = colors.all_red}, - ["ColorColumn"] = { }, ["vimAugroup"] = { fg = colors.magenta }, ["vimAutoCmdGroup"] = { fg = colors.magenta }, ["vimAutoCmdSfxList"] = { fg = colors.magenta }, |