mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-04-15 00:58:37 +00:00
13 lines
310 B
Nix
13 lines
310 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
|
in {
|
|
options.vim.git.gitlinker-nvim = {
|
|
enable = mkEnableOption "gitlinker-nvim" // {default = config.vim.git.enable;};
|
|
setupOpts = mkPluginSetupOption "gitlinker-nvim" {};
|
|
};
|
|
}
|