mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
21 lines
468 B
Nix
21 lines
468 B
Nix
{
|
|
empty = {
|
|
plugins.project-nvim.enable = 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')";
|
|
};
|
|
};
|
|
}
|