nix-config/modules/nixvim/completion/luasnip.nix

17 lines
232 B
Nix
Raw Permalink Normal View History

2025-07-26 02:35:57 +01:00
{
2025-07-28 20:11:50 +01:00
flake.modules.nixvim.custom.plugins = {
cmp_luasnip.enable = true;
luasnip = {
enable = true;
fromLua = [
{
lazyLoad = true;
paths = ./snippets;
}
];
};
};
2025-07-26 02:35:57 +01:00
}