aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2023-08-27 16:02:00 +0200
committersrdusr <trevorgray@srdusr.com>2023-08-27 16:02:00 +0200
commit6ffbb45c2aa0de9ed304b5d767510502dc245e64 (patch)
tree0de4204ee5579b69df04680f48fb64210c25b561
parent233903da6ffa8faa74f826f55e46124cba7f6ae2 (diff)
downloaddotfiles-6ffbb45c2aa0de9ed304b5d767510502dc245e64.tar.gz
dotfiles-6ffbb45c2aa0de9ed304b5d767510502dc245e64.zip
Changed git signs colors
-rw-r--r--lua/plugins/heirline.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/plugins/heirline.lua b/lua/plugins/heirline.lua
index 2672b9d..eeedb5b 100644
--- a/lua/plugins/heirline.lua
+++ b/lua/plugins/heirline.lua
@@ -271,14 +271,14 @@ local Git = {
self.has_changes = self.status_dict.added ~= 0 or self.status_dict.removed ~= 0 or self.status_dict.changed ~= 0
end,
--hl = { fg = "orange" },
- hl = { fg = colors.orange, bg = colors.bg },
+ --hl = { fg = colors.orange, bg = colors.bg },
{
-- git branch name
provider = function(self)
return ' ' .. self.status_dict.head
end,
--hl = { bold = true },
- hl = { bold = true, bg = colors.bg },
+ hl = { fg = colors.orange, bold = true, bg = colors.bg },
},
-- You could handle delimiters, icons and counts similar to Diagnostics
{