nixvim/config/plugins/git/gitsigns.nix
2024-05-16 01:19:13 +02:00

27 lines
443 B
Nix

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