1
0
Fork 0
mirror of https://github.com/akr2002/nv.git synced 2025-03-14 10:49:22 +00:00
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}";
}
];
};
}