diff options
| author | gapato <[email protected]> | 2021-10-22 10:16:39 +0200 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2021-10-22 11:46:39 +0330 | 
| commit | 30867da8ef0b4b5ff098312e40fda585864935f8 (patch) | |
| tree | 65d4b6a09a288af125e690192e4bbe778db60bc6 | |
| parent | 212fdadce413486fc4a5a5f1e0e09bd0eefd87c3 (diff) | |
fix(onedarker): fix color of concealed characters (#1817)
| -rw-r--r-- | lua/onedarker/highlights.lua | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lua/onedarker/highlights.lua b/lua/onedarker/highlights.lua index 28e7c07f..2869977c 100644 --- a/lua/onedarker/highlights.lua +++ b/lua/onedarker/highlights.lua @@ -42,7 +42,7 @@ local highlights = {    CursorIM = { fg = C.cursor_fg, bg = C.cursor_bg },    TermCursor = { fg = C.cursor_fg, bg = C.cursor_bg },    TermCursorNC = { fg = C.cursor_fg, bg = C.cursor_bg }, -  Conceal = { fg = C.accent }, +  Conceal = { fg = C.accent, bg = Config.transparent_background and "NONE" or C.bg },    Directory = { fg = C.blue },    SpecialKey = { fg = C.blue, style = "bold" },    Title = { fg = C.blue, style = "bold" }, | 
