nv/config/snippets/luasnip.nix

17 lines
296 B
Nix
Raw Normal View History

2024-03-06 12:59:28 +00:00
{ pkgs, config, ... }:
{
plugins.luasnip = {
enable = true;
extraConfig = {
enable_autosnipptets = true;
store_selection_keys = "<Tab>";
};
fromVscode = [
{
lazyLoad = true;
paths = "${pkgs.vimPlugins.friendly-snippets}";
}
];
};
}