nichts/modules/programs/editors/nvf/plugins/settings/git.nix

12 lines
220 B
Nix

_: {
programs.neovim-flake.settings.vim = {
git = {
enable = true;
vim-fugitive.enable = true;
gitsigns = {
enable = true;
codeActions.enable = false; # no.
};
};
};
}