refactor nvim config
This commit is contained in:
parent
8542426d53
commit
f4bc3252ee
40 changed files with 798 additions and 1079 deletions
14
config/nvim/lua/aleidk/plugins/gitsigns.lua
Normal file
14
config/nvim/lua/aleidk/plugins/gitsigns.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
-- Adds git releated signs to the gutter, as well as utilities for managing changes
|
||||
return {
|
||||
"lewis6991/gitsigns.nvim",
|
||||
opts = {
|
||||
-- See `:help gitsigns.txt`
|
||||
signs = {
|
||||
add = { text = "+" },
|
||||
change = { text = "~" },
|
||||
delete = { text = "_" },
|
||||
topdelete = { text = "‾" },
|
||||
changedelete = { text = "~" },
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue