mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-15 11:44:32 +02:00
plugins/utils: move to by-name
This commit is contained in:
parent
faff32b9f1
commit
52f125679f
195 changed files with 2 additions and 102 deletions
43
tests/test-sources/plugins/by-name/project-nvim/default.nix
Normal file
43
tests/test-sources/plugins/by-name/project-nvim/default.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
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')";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue