refactor plugins into directory
This commit is contained in:
parent
2ffe0d20cd
commit
29efb5d532
16 changed files with 541 additions and 474 deletions
14
lua/plugins/gitsigns.lua
Normal file
14
lua/plugins/gitsigns.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
return {
|
||||
{ -- Add git changes to gutter
|
||||
'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