git-subtree-dir: users/daniel/configs/system/nvim/nvim git-subtree-split: e088bce2bd90c0b5c35d13a8615a55455b96294d
17 lines
488 B
Lua
17 lines
488 B
Lua
local get_icon = require("astronvim.utils").get_icon
|
|
return {
|
|
"lewis6991/gitsigns.nvim",
|
|
enabled = vim.fn.executable "git" == 1,
|
|
event = "User AstroGitFile",
|
|
opts = {
|
|
signs = {
|
|
add = { text = get_icon "GitSign" },
|
|
change = { text = get_icon "GitSign" },
|
|
delete = { text = get_icon "GitSign" },
|
|
topdelete = { text = get_icon "GitSign" },
|
|
changedelete = { text = get_icon "GitSign" },
|
|
untracked = { text = get_icon "GitSign" },
|
|
},
|
|
},
|
|
}
|