mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 19:41:15 +00:00
14 lines
156 B
Nix
14 lines
156 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
with lib; {
|
||
|
config = {
|
||
|
vim.git = {
|
||
|
enable = mkDefault false;
|
||
|
gitsigns.enable = mkDefault false;
|
||
|
};
|
||
|
};
|
||
|
}
|