mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 12:12:13 +02:00
17 lines
377 B
Lua
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 = "▎" },
|
|
},
|
|
},
|
|
}
|