reenable luasnip

This commit is contained in:
Roel de Cort 2024-04-24 00:20:00 +02:00
parent fab2e0cb95
commit f821cda817

View file

@ -1,14 +1,14 @@
#TODO: Find out why we get an error when we have luasnip enabled, disabled for now! #TODO: Find out why we get an error when we have luasnip enabled, disabled for now!
{pkgs, ...}: { {pkgs, ...}: {
plugins.luasnip = { plugins.luasnip = {
enable = false; enable = true;
extraConfig = { extraConfig = {
enable_autosnippets = true; enable_autosnippets = true;
store_selection_keys = "<Tab>"; store_selection_keys = "<Tab>";
}; };
fromVscode = [ fromVscode = [
{ {
lazyLoad = true; lazyLoad = false;
paths = "${pkgs.vimPlugins.friendly-snippets}"; paths = "${pkgs.vimPlugins.friendly-snippets}";
} }
]; ];