diff --git a/home/user/.config/nvim/lua/plugins/coding.lua b/home/user/.config/nvim/lua/plugins/coding.lua index a5745ed..270fd80 100644 --- a/home/user/.config/nvim/lua/plugins/coding.lua +++ b/home/user/.config/nvim/lua/plugins/coding.lua @@ -136,7 +136,16 @@ return { topdelete = { text = "^" }, changedelete = { text = "~" }, untracked = { text = "0" }, - } + }, + signs_staged = { + add = { text = '+' }, + change = { text = '|' }, + delete = { text = '-' }, + topdelete = { text = "^" }, + changedelete = { text = '~' }, + untracked = { text = '0' }, + }, + signs_staged_enable = true, }) vim.keymap.set("n", "g", "", {desc = "Git actions"})