mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-01-19 00:12:25 +00:00
c59f8922b2
Co-authored-by: diniamo <55629891+diniamo@users.noreply.github.com>
30 lines
534 B
Nix
30 lines
534 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf;
|
|
|
|
cfg = config.vim.snippets.luasnip;
|
|
in {
|
|
config = mkIf cfg.enable {
|
|
vim = {
|
|
lazy.plugins.luasnip = {
|
|
package = "luasnip";
|
|
|
|
lazy = true;
|
|
|
|
setupModule = "luasnip";
|
|
inherit (cfg) setupOpts;
|
|
|
|
after = cfg.loaders;
|
|
};
|
|
startPlugins = cfg.providers;
|
|
autocomplete.nvim-cmp = {
|
|
sources = {luasnip = "[LuaSnip]";};
|
|
sourcePlugins = ["cmp-luasnip"];
|
|
};
|
|
};
|
|
};
|
|
}
|