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