mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-24 03:25:29 +02:00
Split config into multiple files based on kickstart.modular
This commit is contained in:
parent
62f8ac3e1a
commit
3e6a648ef1
23 changed files with 1254 additions and 1102 deletions
14
lua/plugins/gitsigns.lua
Normal file
14
lua/plugins/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