feat: add gitlinker

This commit is contained in:
Christoph Koehler 2025-04-05 22:29:54 -06:00
commit 7ca4c17385
No known key found for this signature in database
6 changed files with 59 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{
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" {};
};
}