modular test
This commit is contained in:
parent
ad08822b02
commit
d5c5fc6587
20 changed files with 749 additions and 1431 deletions
14
lua/beartaffy/lazy/gitsigns.lua
Normal file
14
lua/beartaffy/lazy/gitsigns.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
return {
|
||||
{ -- 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 = '~' },
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue