refactor nvim config

This commit is contained in:
Alexander Navarro 2023-04-19 18:14:25 -04:00
parent 8542426d53
commit f4bc3252ee
40 changed files with 798 additions and 1079 deletions

View 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 = "~" },
},
},
}