Skip to content

Commit 75acc3e

Browse files
fix(nixvim): disable lazyload on luasnip bc unreliable
1 parent e201a10 commit 75acc3e

File tree

1 file changed

+8
-7
lines changed
  • modules/home/development/neovim/plugins/kickstart

1 file changed

+8
-7
lines changed

modules/home/development/neovim/plugins/kickstart/nvim-cmp.nix

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,14 @@
77
# https://nix-community.github.io/nixvim/plugins/luasnip/index.html
88
luasnip = {
99
enable = true;
10-
lazyLoad = {
11-
enable = true;
12-
settings = {
13-
# LazyFile is a shorthand that lazy.nvim uses
14-
event = [ "BufReadPost BufWritePost BufNewFile" ];
15-
};
16-
};
10+
# TODO: sometimes errors with luasnip not found
11+
# lazyLoad = {
12+
# enable = true;
13+
# settings = {
14+
# # LazyFile is a shorthand that lazy.nvim uses
15+
# event = [ "BufReadPost BufWritePost BufNewFile" ];
16+
# };
17+
# };
1718
};
1819
cmp_luasnip.enable = true;
1920

0 commit comments

Comments
 (0)