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