mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-02-28 14:04:29 +00:00
12 lines
253 B
Nix
12 lines
253 B
Nix
{
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
|
in {
|
|
options.vim.utility.grug-far-nvim = {
|
|
enable = mkEnableOption "grug-far";
|
|
setupOpts = mkPluginSetupOption "grug-far" {};
|
|
};
|
|
}
|