diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-08-26 23:50:07 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-08-26 23:50:07 +0200 |
| commit | f52ce320e1c56d80dabaf9f4c7faba11e9f84818 (patch) | |
| tree | 3a1babf5f11dd484ed5d1961c3072e1d00fc2921 | |
| parent | a41e5da5f9fbd91b5e803797751aabae68aa47a9 (diff) | |
| download | dotfiles-f52ce320e1c56d80dabaf9f4c7faba11e9f84818.tar.gz dotfiles-f52ce320e1c56d80dabaf9f4c7faba11e9f84818.zip | |
Fixed Ruler and nvim-tree colors
| -rw-r--r-- | lua/plugins/heirline.lua | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/lua/plugins/heirline.lua b/lua/plugins/heirline.lua index f8ae814..2672b9d 100644 --- a/lua/plugins/heirline.lua +++ b/lua/plugins/heirline.lua @@ -633,7 +633,7 @@ local ShowCmd = { } local cursor_location = { - { provider = ' %1(%4l:%-3(%c%)%)%*', hl = { fg = colors.black, bold = true } }, + { provider = '%1(%4l:%-3(%c%)%) %*', hl = { fg = colors.black, bold = true } }, } local Ruler = { cursor_location } @@ -1209,13 +1209,15 @@ local TabLineOffset = { local pad = math.ceil((width - #title) / 2) return string.rep(' ', pad) .. title .. string.rep(' ', pad) end, - hl = function(self) - if vim.api.nvim_get_current_win() == self.winid then - return 'TablineSel' - else - return 'TablineFill' - end - end, + hl = { fg = colors.white, bold = false }, + + --hl = function(self) + -- if vim.api.nvim_get_current_win() == self.winid then + -- return 'TablineSel' + -- else + -- return 'TablineFill' + -- end + --end, } local TabLine = { |
