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
7 changed files with 111 additions and 106 deletions

View file

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