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