feat: try a simpler setup
This commit is contained in:
parent
333e159314
commit
8ce23e2582
19 changed files with 150 additions and 1284 deletions
12
lua/plugins/gitsigns.lua
Normal file
12
lua/plugins/gitsigns.lua
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
local plugin = {"lewis6991/gitsigns.nvim"}
|
||||
plugin.opts = {
|
||||
signs = {
|
||||
add = { text = "+" },
|
||||
change = { text = "~" },
|
||||
delete = { text = "_" },
|
||||
topdelete = { text = "‾" },
|
||||
changedelete = { text = "~" }
|
||||
}
|
||||
}
|
||||
return plugin
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue