mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-12-20 19:50:04 +01:00
18 lines
291 B
Nix
18 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;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|