Revert "chore: remove gitsigns"

This reverts commit 9fef541628.
This commit is contained in:
2026-03-18 01:35:03 +01:00
parent 0ec261c7d8
commit efc26324ac
3 changed files with 22 additions and 0 deletions
+1
View File
@@ -24,6 +24,7 @@ require('lazy').setup {
require 'plugins.lsp',
require 'plugins.formatting',
require 'plugins.autocompletion',
require 'plugins.gitsigns',
require 'plugins.indent-blankline',
require 'plugins.render-markdown',
require 'plugins.misc',
+1
View File
@@ -8,6 +8,7 @@
"conform.nvim": { "branch": "master", "commit": "c2526f1cde528a66e086ab1668e996d162c75f4f" },
"fidget.nvim": { "branch": "main", "commit": "7fa433a83118a70fe24c1ce88d5f0bd3453c0970" },
"friendly-snippets": { "branch": "main", "commit": "6cd7280adead7f586db6fccbd15d2cac7e2188b9" },
"gitsigns.nvim": { "branch": "main", "commit": "abf82a65f185bd54adc0679f74b7d6e1ada690c9" },
"indent-blankline.nvim": { "branch": "master", "commit": "005b56001b2cb30bfa61b7986bc50657816ba4ba" },
"kanagawa.nvim": { "branch": "master", "commit": "aef7f5cec0a40dbe7f3304214850c472e2264b10" },
"lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" },
+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 = '~' },
},
},
}