18 lines
453 B
Lua
18 lines
453 B
Lua
-- ~/.config/nvim/lua/sam/plugins/gitsigns.lua
|
|
|
|
return {
|
|
"lewis6991/gitsigns.nvim",
|
|
config = function()
|
|
require("gitsigns").setup({
|
|
-- You can configure the signs here if you want
|
|
-- signs = {
|
|
-- add = { text = '+' },
|
|
-- change = { text = '~' },
|
|
-- delete = { text = '_' },
|
|
-- topdelete = { text = '‾' },
|
|
-- changedelete = { text = '~' },
|
|
-- },
|
|
})
|
|
end,
|
|
}
|