Skip to content

Commit 73c45d1

Browse files
committed
🐛 remove unwanted character from StatusLineTermNC
There was a character that prevented the StatusLineTermNC group from loading
1 parent fcae86f commit 73c45d1

1 file changed

Lines changed: 8 additions & 10 deletions

File tree

lua/spaceduck.lua

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -205,16 +205,14 @@ local scheme = {
205205
reverse = true,
206206
},
207207
StatusLineTerm = { link = "StatusLine" },
208-
-- The two groups below are commented until we determine why StatusLineTermNC
209-
-- is not accepted by nvim_set_hl()
210-
-- StatusLineTermNC = {
211-
-- fg = colors.black.hex,
212-
-- ctermfg = colors.black.cterm,
213-
-- bg = colors.dark_purple.hex,
214-
-- ctermbg = colors.dark_purple.cterm,
215-
-- reverse = true,
216-
-- },
217-
-- StatusLineNC = { link = "StatusLineTermNC " },
208+
StatusLineTermNC = {
209+
fg = colors.black.hex,
210+
ctermfg = colors.black.cterm,
211+
bg = colors.dark_purple.hex,
212+
ctermbg = colors.dark_purple.cterm,
213+
reverse = true,
214+
},
215+
StatusLineNC = { link = "StatusLineTermNC" },
218216
TabLine = {
219217
fg = colors.black.hex,
220218
ctermfg = colors.black.cterm,

0 commit comments

Comments
 (0)