summaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2021-09-01 22:56:38 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2021-09-01 22:56:38 +0200
commit97af3043101bf2b8cd0f512da70c7e7fdf9dd204 (patch)
tree1cf974cd90b79257a73af539c9a7060373f1aac5 /.config
parentb112a2e187741bd2e44b2904f6b8221cf469706e (diff)
Fix hl colors in spectre
Diffstat (limited to '.config')
-rw-r--r--.config/nvim/lua/dark/highlights.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/nvim/lua/dark/highlights.lua b/.config/nvim/lua/dark/highlights.lua
index d24f53f..45008b7 100644
--- a/.config/nvim/lua/dark/highlights.lua
+++ b/.config/nvim/lua/dark/highlights.lua
@@ -14,8 +14,8 @@ local highlights = {
WildMenu = { fg = C.blue, bg = C.alt_bg },
CursorLineNr = { fg = C.light_gray, style = "bold" },
Comment = { fg = C.blue, style = "italic" },
- Folded = { fg = C.accent, bg = C.alt_bg },
- FoldColumn = { fg = C.accent, bg = C.alt_bg },
+ Folded = { fg = C.light_gray, bg = C.alt_bg },
+ FoldColumn = { fg = C.light_gray, bg = C.alt_bg },
LineNr = { fg = C.gray },
FloatBoder = { fg = C.gray, bg = C.alt_bg },
Whitespace = { fg = C.gray },