Skip to content

Commit 7422b6c

Browse files
committed
fix: overly bright fillchar HLs when enbabled
1 parent 265ed77 commit 7422b6c

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

lua/cyberdream/theme.lua

+8-4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ function M.setup()
2323
verthoriz = " ",
2424
eob = " ",
2525
})
26+
else
27+
vim.opt.fillchars:append({
28+
eob = " ",
29+
})
2630
end
2731

2832
theme.highlights = {
@@ -41,8 +45,8 @@ function M.setup()
4145
DiffText = { fg = t.blue },
4246
EndOfBuffer = { fg = t.bg },
4347
ErrorMsg = { fg = t.red },
44-
VertSplit = { fg = t.bg, bg = t.bg },
45-
WinSeperator = { fg = t.bg, bg = t.bg },
48+
VertSplit = { fg = t.bgHighlight, bg = t.bg },
49+
WinSeperator = { fg = t.bgHighlight, bg = t.bg },
4650
Folded = { fg = t.grey, bg = t.bgHighlight },
4751
FoldColumn = { fg = t.grey, bg = t.bgHighlight },
4852
SignColumn = { fg = t.grey, bg = t.bg },
@@ -53,8 +57,8 @@ function M.setup()
5357
MatchParen = { fg = t.pink, bg = t.bgHighlight },
5458
ModeMsg = { fg = t.fg },
5559
MsgArea = { fg = t.fg },
56-
MoreMsg = { fg = t.fg },
57-
NonText = { fg = t.grey },
60+
MoreMsg = { fg = t.blue },
61+
NonText = { fg = t.bg },
5862
Normal = { fg = t.fg, bg = t.bg },
5963
NormalNC = { fg = t.fg, bg = t.bg },
6064
NormalFloat = { fg = t.fg, bg = t.bg },

0 commit comments

Comments
 (0)