add glyph icon for untracked icon (gitsigns

This commit is contained in:
siduck 2022-11-15 18:40:40 +05:30
parent c6252937b2
commit 4db58e4975
1 changed files with 3 additions and 2 deletions

View File

@ -145,10 +145,11 @@ M.gitsigns = function()
delete = { hl = "DiffDelete", text = "", numhl = "GitSignsDeleteNr" },
topdelete = { hl = "DiffDelete", text = "", numhl = "GitSignsDeleteNr" },
changedelete = { hl = "DiffChangeDelete", text = "~", numhl = "GitSignsChangeNr" },
untracked = { hl = "GitSignsAdd", text = "", numhl = "GitSignsAddNr", linehl = "GitSignsAddLn" },
},
on_attach = function (bufnr)
on_attach = function(bufnr)
utils.load_mappings("gitsigns", { buffer = bufnr })
end
end,
}
options = load_override(options, "lewis6991/gitsigns.nvim")