refactor(nvim): use @diff
hls for heirline git status
This commit is contained in:
parent
887a36ec00
commit
aedd1064f0
@ -6,7 +6,6 @@ return {
|
|||||||
"lewis6991/gitsigns.nvim",
|
"lewis6991/gitsigns.nvim",
|
||||||
},
|
},
|
||||||
opts = function()
|
opts = function()
|
||||||
local core_utils = require("utils.funcs")
|
|
||||||
local colors = require("kanagawa.colors").setup().palette
|
local colors = require("kanagawa.colors").setup().palette
|
||||||
|
|
||||||
local seps = {
|
local seps = {
|
||||||
@ -1009,21 +1008,21 @@ return {
|
|||||||
local count = self.status_dict.added or 0
|
local count = self.status_dict.added or 0
|
||||||
return count > 0 and (" " .. count)
|
return count > 0 and (" " .. count)
|
||||||
end,
|
end,
|
||||||
hl = { fg = utils.get_highlight("Character").fg, bg = colors.sumiInk4 },
|
hl = { fg = utils.get_highlight("@diff.plus").fg, bg = colors.sumiInk4 },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
provider = function(self)
|
provider = function(self)
|
||||||
local count = self.status_dict.changed or 0
|
local count = self.status_dict.changed or 0
|
||||||
return count > 0 and (" " .. count)
|
return count > 0 and (" " .. count)
|
||||||
end,
|
end,
|
||||||
hl = { fg = utils.get_highlight("DiffChanged").fg, bg = colors.sumiInk4 },
|
hl = { fg = utils.get_highlight("@diff.delta").fg, bg = colors.sumiInk4 },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
provider = function(self)
|
provider = function(self)
|
||||||
local count = self.status_dict.removed or 0
|
local count = self.status_dict.removed or 0
|
||||||
return count > 0 and (" " .. count)
|
return count > 0 and (" " .. count)
|
||||||
end,
|
end,
|
||||||
hl = { fg = utils.get_highlight("DiffDelete").fg, bg = colors.sumiInk4 },
|
hl = { fg = utils.get_highlight("@diff.minus").fg, bg = colors.sumiInk4 },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
condition = function(self)
|
condition = function(self)
|
||||||
|
Loading…
Reference in New Issue
Block a user