diff options
author | christianchiarulli <[email protected]> | 2021-08-30 18:23:39 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-08-30 18:23:39 -0400 |
commit | b6a0d5a921edb9fea506c18a354fde86bc2e6bbc (patch) | |
tree | 3da128ca29129b9292adb1778f6108cbe30a3250 | |
parent | dc1151a90aa68f4f8d5350e40daa67034241c0e9 (diff) |
fix: colorscheme Nontext = context closes #1416
-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 d8facdd3..f8b3bd20 100644 --- a/lua/onedarker/highlights.lua +++ b/lua/onedarker/highlights.lua @@ -53,7 +53,7 @@ local highlights = { MoreMsg = { fg = C.orange }, Question = { fg = C.orange }, EndOfBuffer = { fg = C.bg }, - NonText = { fg = C.bg }, + NonText = { fg = C.context }, Variable = { fg = C.fg }, String = { fg = C.green }, Character = { fg = C.green }, |