Added git integrations

This commit is contained in:
Rakshit Sinha 2024-11-22 23:59:38 -08:00
parent fa86cfebf5
commit 8fd602a27e
5 changed files with 86 additions and 59 deletions

View file

@ -0,0 +1,19 @@
return {
-- Here is a more advanced example where we pass configuration
-- options to `gitsigns.nvim`. This is equivalent to the following Lua:
-- require('gitsigns').setup({ ... })
--
-- See `:help gitsigns` to understand what the configuration keys do
{ -- Adds git related signs to the gutter, as well as utilities for managing changes
"lewis6991/gitsigns.nvim",
opts = {
signs = {
add = { text = "+" },
change = { text = "~" },
delete = { text = "_" },
topdelete = { text = "" },
changedelete = { text = "~" },
},
},
},
}