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

10 lines
156 B
Nix
Raw Normal View History

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