add gitsigns plugins

This commit is contained in:
2026-06-07 22:29:45 +02:00
parent 4bdeabb350
commit 112312bbc5
6 changed files with 131 additions and 3 deletions
+19 -1
View File
@@ -63,6 +63,24 @@ vim.g.ui = {
symbols = {
component_separators = { left = "", right = "" },
section_separators = { left = "", right = "" },
window = ""
window = "",
git = {
signs = {
add = { text = "" },
change = { text = "" },
delete = { text = "_" },
topdelete = { text = "" },
changedelete = { text = "~" },
untracked = { text = "" },
},
signs_staged = {
add = { text = "" },
change = { text = "" },
delete = { text = "_" },
topdelete = { text = "" },
changedelete = { text = "~" },
untracked = { text = "" },
},
},
}
}