supermaven-nvim: fixes

This commit is contained in:
Devin Droddy 2025-07-05 11:08:15 -04:00
commit b86e7d157d
No known key found for this signature in database
4 changed files with 11 additions and 6 deletions

View file

@ -0,0 +1,17 @@
{
config,
lib,
...
}: let
cfg = config.vim.assistant.supermaven-nvim;
in {
config = lib.mkIf cfg.enable {
vim.lazy.plugins = {
supermaven-nvim = {
package = "supermaven-nvim";
setupModule = "supermaven-nvim";
inherit (cfg) setupOpts;
};
};
};
}