mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-06 02:11:33 +00:00
17 lines
291 B
Nix
17 lines
291 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
cfg = config.vim.assistant.supermaven;
|
|
in {
|
|
config = lib.mkIf cfg.enable {
|
|
vim.plugins = {
|
|
supermaven-nvim = {
|
|
package = "supermaven-nvim";
|
|
setupModule = "supermaven-nvim";
|
|
inherit (cfg) setupOpts;
|
|
};
|
|
};
|
|
};
|
|
}
|