Finalized moving things out of init.lua into seperate folders

This commit is contained in:
angryluck 2024-05-29 07:39:22 +02:00
parent 3b96ad1b57
commit dd94586255
14 changed files with 707 additions and 660 deletions

View file

@ -0,0 +1,17 @@
return {
-- Git related plugins
"tpope/vim-fugitive",
"tpope/vim-rhubarb",
{
"lewis6991/gitsigns.nvim",
opts = {
signs = {
add = { text = "+" },
change = { text = "~" },
delete = { text = "_" },
topdelete = { text = "" },
changedelete = { text = "~" },
},
},
},
}