From f52ce320e1c56d80dabaf9f4c7faba11e9f84818 Mon Sep 17 00:00:00 2001 From: srdusr Date: Sat, 26 Aug 2023 23:50:07 +0200 Subject: Fixed Ruler and nvim-tree colors --- lua/plugins/heirline.lua | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'lua') 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 = { -- cgit v1.2.3