From f821cda81705c6a55ccba5e0ab1524935ac4ee8e Mon Sep 17 00:00:00 2001 From: Roel de Cort Date: Wed, 24 Apr 2024 00:20:00 +0200 Subject: [PATCH] reenable luasnip --- config/plugins/snippets/luasnip.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/plugins/snippets/luasnip.nix b/config/plugins/snippets/luasnip.nix index c448195..81d7726 100644 --- a/config/plugins/snippets/luasnip.nix +++ b/config/plugins/snippets/luasnip.nix @@ -1,14 +1,14 @@ #TODO: Find out why we get an error when we have luasnip enabled, disabled for now! {pkgs, ...}: { plugins.luasnip = { - enable = false; + enable = true; extraConfig = { enable_autosnippets = true; store_selection_keys = ""; }; fromVscode = [ { - lazyLoad = true; + lazyLoad = false; paths = "${pkgs.vimPlugins.friendly-snippets}"; } ];