1
0
Fork 0
mirror of https://github.com/jbowdre/dotfiles.git synced 2025-02-14 16:24:38 +00:00
dotfiles/home/modules/tui/neovim/plugins/gitsigns.nix

12 lines
170 B
Nix
Raw Normal View History

{
programs.nixvim.plugins.gitsigns = {
enable = true;
settings.signs = {
add.text = "+";
change.text = "~";
delete.text = "-";
};
};
}