nix-community.nixvim/tests/test-sources/plugins/utils/project-nvim.nix
2024-05-05 22:00:40 +02:00

43 lines
729 B
Nix

{
empty = {
plugins.project-nvim.enable = true;
};
telescopeEnabled = {
plugins.telescope = {
enable = true;
};
plugins.project-nvim = {
enable = true;
enableTelescope = true;
};
};
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')";
};
};
}