feat: add lewis6991/gitsigns.nvim

This commit is contained in:
Matej Janezic 2025-10-08 00:47:16 +02:00
parent 38ba833689
commit 1bfbaa98b4
Signed by: janezicmatej
GPG Key ID: 4298E230ED37B2C0
1 changed files with 12 additions and 0 deletions

12
lua/plugins/gitsigns.lua Normal file
View File

@ -0,0 +1,12 @@
MiniDeps.later(function()
MiniDeps.add("lewis6991/gitsigns.nvim")
require("gitsigns").setup({
signs = {
add = { text = "+" },
change = { text = "~" },
delete = { text = "x" },
topdelete = { text = "x" },
changedelete = { text = "~" },
},
})
end)