1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-02-13 20:02:44 +01:00
neovim-flake/modules/git/config.nix

14 lines
156 B
Nix
Raw Normal View History

{
config,
lib,
...
}:
with lib; {
config = {
vim.git = {
enable = mkDefault false;
gitsigns.enable = mkDefault false;
};
};
}