diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-10-30 22:23:52 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-11-04 17:37:20 +0200 |
| commit | 7372a23448f6b2e9e130b54eeacdb29afaa0383f (patch) | |
| tree | 2cf9818590bc98514dab37491400a548bad4f947 /.config | |
| parent | a77de9f50940dd0bbc39a5dfe2ab8a622d6092e7 (diff) | |
| download | dotfiles-7372a23448f6b2e9e130b54eeacdb29afaa0383f.tar.gz dotfiles-7372a23448f6b2e9e130b54eeacdb29afaa0383f.zip | |
Changed foreground color for ViMode and Ruler to black
Diffstat (limited to '.config')
| -rw-r--r-- | .config/nvim/lua/plugins/heirline.lua | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/.config/nvim/lua/plugins/heirline.lua b/.config/nvim/lua/plugins/heirline.lua index 11356d9..c41aff3 100644 --- a/.config/nvim/lua/plugins/heirline.lua +++ b/.config/nvim/lua/plugins/heirline.lua @@ -776,13 +776,19 @@ end, { Space, LSPActive, hl = { bg = colors.darkgray, force = true } }) FileInfoBlock = utils.surround({ '', '' }, function(self) return self:mode_color() -end, { FileInfoBlock, Space, hl = { bg = colors.gray, force = true } }) +end, { FileInfoBlock, Space, hl = { bg = colors.black, force = true } }) -Ruler = utils.surround({ '', '' }, colors.black, { Ruler, hl = { fg = colors.black, force = true } }) +ViMode = utils.surround({ '', '' }, function(self) + return self:mode_color() +end, { ViMode, hl = { fg = colors.black, force = true } }) + +Ruler = utils.surround({ '', '' }, function(self) + return self:mode_color() +end, { Ruler, hl = { fg = colors.black, force = true } }) local left = { { RightSpace, hl = { bg = colors.nobg, force = true } }, - { ViMode, hl = { fg = utils.get_highlight('statusline').bg, force = true } }, + { ViMode, hl = { bg = utils.get_highlight('statusline').bg, bold = false } }, { LeftSpace, hl = { bg = colors.nobg, force = true } }, { Space, hl = { bg = colors.nobg, force = true } }, { FileNameBlock, hl = { bg = colors.nobg, force = true } }, @@ -805,7 +811,7 @@ local right = { { Space, hl = { bg = colors.nobg, force = true } }, { FileInfoBlock, hl = { bg = colors.nobg, force = true } }, { RightSpace, hl = { bg = colors.nobg, force = true } }, - { Ruler, hl = { fg = utils.get_highlight('statusline').bg, force = true } }, + { Ruler, hl = { fg = utils.get_highlight('statusline').bg, bold = false } }, { LeftSpace, hl = { bg = colors.nobg, force = true } }, } @@ -814,7 +820,7 @@ local DefaultStatusline = { sections } local specialleft = { { RightSpace, hl = { bg = colors.nobg, force = true } }, - { ViMode, hl = { fg = utils.get_highlight('statusline').bg, force = true } }, + { ViMode, hl = { bg = utils.get_highlight('statusline').bg, bold = false } }, { LeftSpace, hl = { bg = colors.nobg, force = true } }, } @@ -826,7 +832,7 @@ local specialmiddle = { local specialright = { { RightSpace, hl = { bg = colors.nobg, force = true } }, - { Ruler, hl = { fg = utils.get_highlight('statusline').bg, force = true } }, + { Ruler, hl = { fg = utils.get_highlight('statusline').bg, bold = false } }, { LeftSpace, hl = { bg = colors.nobg, force = true } }, } |
