nixvim/config/plugins/git/gitsigns.nix
Patrick Michl 28d8213ebc
add config
2024-11-05 13:01:15 +01:00

28 lines
443 B
Nix

_: {
plugins.gitsigns = {
enable = true;
settings = {
signs = {
add = {
text = " ";
};
change = {
text = " ";
};
delete = {
text = " ";
};
untracked = {
text = "";
};
topdelete = {
text = "󱂥 ";
};
changedelete = {
text = "󱂧 ";
};
};
};
};
}