Merge pull request #549 from LilleAila/luasnip-setupOpts
Some checks are pending
Set up binary cache / cachix (default) (push) Waiting to run
Set up binary cache / cachix (maximal) (push) Waiting to run
Set up binary cache / cachix (nix) (push) Waiting to run
Validate flake & check documentation / Validate Flake Documentation (docs) (push) Waiting to run
Validate flake & check documentation / Validate Flake Documentation (docs-html) (push) Waiting to run
Validate flake & check documentation / Validate Flake Documentation (docs-json) (push) Waiting to run
Validate flake & check documentation / Validate Flake Documentation (docs-manpages) (push) Waiting to run
Validate flake & check documentation / Validate hyperlinks in documentation sources (push) Waiting to run
Validate flake & check formatting / Validate Flake (push) Waiting to run
Validate flake & check formatting / Formatting via Alejandra (push) Waiting to run
Build and deploy documentation / Check latest commit (push) Waiting to run
Build and deploy documentation / publish (push) Blocked by required conditions
Check for typos in the source tree / check-typos (push) Waiting to run

snippets/luasnip: add setupOpts
This commit is contained in:
raf 2025-01-12 21:43:55 +03:00 committed by GitHub
commit 520a06586b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 15 additions and 7 deletions

View file

@ -51,4 +51,5 @@
- Remove `vim.notes.obsidian.setupOpts.dir`, which was set by default. Fixes - Remove `vim.notes.obsidian.setupOpts.dir`, which was set by default. Fixes
issue with setting the workspace directory. issue with setting the workspace directory.
- Add `vim.snippets.luasnip.setupOpts`, which was previously missing.
- Add `"prettierd"` as a formatter option in `vim.languages.markdown.format.type`. - Add `"prettierd"` as a formatter option in `vim.languages.markdown.format.type`.

View file

@ -9,13 +9,16 @@
in { in {
config = mkIf cfg.enable { config = mkIf cfg.enable {
vim = { vim = {
lazy.plugins = { lazy.plugins.luasnip = {
luasnip = {
package = "luasnip"; package = "luasnip";
lazy = true; lazy = true;
setupModule = "luasnip";
inherit (cfg) setupOpts;
after = cfg.loaders; after = cfg.loaders;
}; };
};
startPlugins = cfg.providers; startPlugins = cfg.providers;
autocomplete.nvim-cmp = { autocomplete.nvim-cmp = {
sources = {luasnip = "[LuaSnip]";}; sources = {luasnip = "[LuaSnip]";};

View file

@ -1,7 +1,7 @@
{lib, ...}: let {lib, ...}: let
inherit (lib.options) mkEnableOption mkOption literalExpression literalMD; inherit (lib.options) mkEnableOption mkOption literalExpression literalMD;
inherit (lib.types) listOf lines; inherit (lib.types) listOf lines;
inherit (lib.nvim.types) pluginType; inherit (lib.nvim.types) pluginType mkPluginSetupOption;
in { in {
options.vim.snippets.luasnip = { options.vim.snippets.luasnip = {
enable = mkEnableOption "luasnip"; enable = mkEnableOption "luasnip";
@ -32,5 +32,9 @@ in {
``` ```
''; '';
}; };
setupOpts = mkPluginSetupOption "LuaSnip" {
enable_autosnippets = mkEnableOption "autosnippets";
};
}; };
} }