nvim.nix/config/plugins/snippets/luasnip.nix

13 lines
164 B
Nix
Raw Normal View History

2024-08-04 21:19:37 +08:00
{ ... }:
{
plugins.luasnip = {
enable = true;
extraConfig = {
enable_autosnippets = true;
store_selection_keys = "<Tab>";
};
};
}