diff options
| -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 = { |
