migrate to lazy.nvim

This commit is contained in:
Salar Rahmanian 2023-02-10 21:20:55 -08:00
parent 4a91484477
commit 34e314944e
22 changed files with 570 additions and 892 deletions

15
lua/plugins/gitsigns.lua Normal file
View file

@ -0,0 +1,15 @@
return {
"lewis6991/gitsigns.nvim",
lazy = false,
config = function()
require("gitsigns").setup({
signs = {
add = { text = "+" },
change = { text = "~" },
delete = { text = "_" },
topdelete = { text = "" },
changedelete = { text = "~" },
},
})
end,
}