mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-01-18 13:49:49 +01:00
snippets/luasnip: revert adding lazy event
This commit is contained in:
parent
7012938e21
commit
9818d19937
2 changed files with 1 additions and 2 deletions
|
@ -52,4 +52,3 @@
|
||||||
- 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 `vim.snippets.luasnip.setupOpts`, which was previously missing.
|
||||||
- Add a trigger event for luasnip lazy-loading
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ in {
|
||||||
vim = {
|
vim = {
|
||||||
lazy.plugins.luasnip = {
|
lazy.plugins.luasnip = {
|
||||||
package = "luasnip";
|
package = "luasnip";
|
||||||
event = "BufEnter";
|
lazy = true;
|
||||||
after = cfg.loaders;
|
after = cfg.loaders;
|
||||||
setupModule = "luasnip";
|
setupModule = "luasnip";
|
||||||
inherit (cfg) setupOpts;
|
inherit (cfg) setupOpts;
|
||||||
|
|
Loading…
Reference in a new issue