nixvimConfig/plugins/luasnip.nix
Michi Floßmann fcf9336704 add a todo
2024-07-13 13:44:15 +02:00

10 lines
206 B
Nix

_:{
opts.enable = true;
# TODO: There's a better way to do this
rootOpts = {
extraConfigLuaPre = ''
require("luasnip.loaders.from_lua").load({paths = "~/.config/snippets/"})
'';
};
}