Finalized moving things out of init.lua into seperate folders
This commit is contained in:
parent
3b96ad1b57
commit
dd94586255
14 changed files with 707 additions and 660 deletions
17
lua/angryluck/plugins/git.lua
Normal file
17
lua/angryluck/plugins/git.lua
Normal 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 = "~" },
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue