supermaven-nvim: add option

closes #970
This commit is contained in:
Devin Droddy 2025-07-04 22:19:50 -04:00
commit 2317cba854
No known key found for this signature in database
5 changed files with 119 additions and 0 deletions

View file

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