20 lines
301 B
Nix
20 lines
301 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
plugins.luasnip = {
|
|
enable = true;
|
|
extraConfig = {
|
|
enable_autosnippets = true;
|
|
store_selection_keys = "<Tab>";
|
|
};
|
|
fromVscode = [
|
|
{
|
|
lazyLoad = true;
|
|
paths = "${pkgs.vimPlugins.friendly-snippets}";
|
|
}
|
|
];
|
|
};
|
|
}
|