nvf/modules/git/git.nix

21 lines
309 B
Nix
Raw Normal View History

{
2023-04-17 21:55:12 +00:00
pkgs,
config,
lib,
...
}:
with lib;
with builtins; let
cfg = config.vim.git;
in {
options.vim.git = {
2023-04-17 21:55:12 +00:00
enable = mkEnableOption "Git support";
2023-04-17 21:55:12 +00:00
gitsigns = {
enable = mkEnableOption "gitsigns";
2023-04-17 21:55:12 +00:00
codeActions = mkEnableOption "gitsigns codeactions through null-ls";
2023-03-31 15:47:17 +00:00
};
2023-04-17 21:55:12 +00:00
};
}