28 lines
443 B
Nix
28 lines
443 B
Nix
_: {
|
|
plugins.gitsigns = {
|
|
enable = true;
|
|
settings = {
|
|
signs = {
|
|
add = {
|
|
text = " ";
|
|
};
|
|
change = {
|
|
text = " ";
|
|
};
|
|
delete = {
|
|
text = " ";
|
|
};
|
|
untracked = {
|
|
text = "";
|
|
};
|
|
topdelete = {
|
|
text = " ";
|
|
};
|
|
changedelete = {
|
|
text = " ";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|