move
This commit is contained in:
parent
f86f18f27a
commit
ebd68fb74c
16 changed files with 662 additions and 808 deletions
13
lua/custom/plugins/git.lua
Normal file
13
lua/custom/plugins/git.lua
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
-- See `:help gitsigns` to understand what the configuration keys do
|
||||
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