2023-11-28 00:01:49 +01:00
|
|
|
{
|
|
|
|
empty = {
|
|
|
|
plugins.project-nvim.enable = true;
|
|
|
|
};
|
|
|
|
|
2024-03-13 08:43:39 -05:00
|
|
|
telescopeEnabled = {
|
|
|
|
plugins.telescope = {
|
|
|
|
enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
plugins.project-nvim = {
|
|
|
|
enable = true;
|
|
|
|
enableTelescope = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-11-28 00:01:49 +01:00
|
|
|
defaults = {
|
|
|
|
plugins.project-nvim = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
manualMode = false;
|
|
|
|
detectionMethods = ["lsp" "pattern"];
|
|
|
|
patterns = [".git" "_darcs" ".hg" ".bzr" ".svn" "Makefile" "package.json"];
|
|
|
|
ignoreLsp = [];
|
|
|
|
excludeDirs = [];
|
|
|
|
showHidden = false;
|
|
|
|
silentChdir = true;
|
|
|
|
scopeChdir = "global";
|
|
|
|
dataPath.__raw = "vim.fn.stdpath('data')";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|