17 lines
456 B
Lua
17 lines
456 B
Lua
return {
|
|
'lewis6991/gitsigns.nvim',
|
|
enabled = vim.fn.executable "git" == 1,
|
|
config = function()
|
|
require("gitsigns").setup({
|
|
signs = {
|
|
add = { text = "+" },
|
|
change = { text = "|" },
|
|
delete = { text = "-" },
|
|
topdelete = { text = "^" },
|
|
changedelete = { text = "~" },
|
|
untracked = { text = "0" },
|
|
}
|
|
})
|
|
end
|
|
}
|