mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
43 lines
803 B
Nix
43 lines
803 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;
|
|
settings = {
|
|
manual_mode = false;
|
|
detection_methods = [
|
|
"lsp"
|
|
"pattern"
|
|
];
|
|
patterns = [
|
|
".git"
|
|
"_darcs"
|
|
".hg"
|
|
".bzr"
|
|
".svn"
|
|
"Makefile"
|
|
"package.json"
|
|
];
|
|
ignore_lsp = [ ];
|
|
exclude_dirs = [ ];
|
|
show_hidden = false;
|
|
silent_chdir = true;
|
|
scope_chdir = "global";
|
|
data_path.__raw = "vim.fn.stdpath('data')";
|
|
};
|
|
};
|
|
};
|
|
}
|