nichts/modules/editors/nvf/plugins/settings/git.nix
2024-07-06 15:15:37 +02:00

12 lines
217 B
Nix

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