aboutsummaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2023-08-26 23:50:07 +0200
committersrdusr <trevorgray@srdusr.com>2023-08-26 23:50:07 +0200
commitf52ce320e1c56d80dabaf9f4c7faba11e9f84818 (patch)
tree3a1babf5f11dd484ed5d1961c3072e1d00fc2921 /lua
parenta41e5da5f9fbd91b5e803797751aabae68aa47a9 (diff)
downloaddotfiles-f52ce320e1c56d80dabaf9f4c7faba11e9f84818.tar.gz
dotfiles-f52ce320e1c56d80dabaf9f4c7faba11e9f84818.zip
Fixed Ruler and nvim-tree colors
Diffstat (limited to 'lua')
-rw-r--r--lua/plugins/heirline.lua18
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 = {