浏览代码

fix(onedarker): fix color of concealed characters (#1817)

gapato 3 年之前
父节点
当前提交
30867da8ef
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lua/onedarker/highlights.lua

+ 1 - 1
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" },