plugins/neorg: use neorgTelescopePackage option

This commit is contained in:
Austin Horstman 2024-09-14 12:16:15 -05:00
parent 7a9bb2ee95
commit e3e3774177
No known key found for this signature in database
2 changed files with 25 additions and 3 deletions

View file

@ -75,13 +75,24 @@
};
telescope-integration = {
# TODO: re-enable when this will have been fixed upstream.
test.runNvim = false;
plugins = {
telescope.enable = false;
telescope.enable = true;
neorg = {
enable = false;
enable = true;
modules."core.integrations.telescope".__empty = null;
};
};
};
no-packages = {
# TODO: re-enable when this will have been fixed upstream.
test.runNvim = false;
plugins.neorg = {
enable = true;
neorgTelescopePackage = null;
};
};
}