Initial configuration

This commit is contained in:
2025-02-11 18:28:07 +01:00
commit 898dd5c1ab
15 changed files with 1287 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
-- Adds git related signs to the gutter, as well as utilities for managing changes
return {
'lewis6991/gitsigns.nvim',
opts = {
signs = {
add = { text = '+' },
change = { text = '~' },
delete = { text = '_' },
topdelete = { text = '' },
changedelete = { text = '~' },
},
signs_staged = {
add = { text = '+' },
change = { text = '~' },
delete = { text = '_' },
topdelete = { text = '' },
changedelete = { text = '~' },
},
},
}