Files
dotfiles/nvim/lua/plugins/git.lua
T
2023-04-09 00:48:29 +02:00

17 lines
377 B
Lua

return {
"lewis6991/gitsigns.nvim",
enabled = vim.fn.executable "git" == 1,
ft = "gitcommit",
event = "User AstroGitFile",
opts = {
signs = {
add = { text = "▎" },
change = { text = "▎" },
delete = { text = "▎" },
topdelete = { text = "契" },
changedelete = { text = "▎" },
untracked = { text = "▎" },
},
},
}