plugins/project-nvim: migrate to mkNeovimPlugin

This commit is contained in:
Austin Horstman 2024-09-03 18:38:30 -05:00
parent d928d6deb1
commit 0d73ab939c
No known key found for this signature in database
2 changed files with 74 additions and 73 deletions

View file

@ -7,7 +7,6 @@
plugins.telescope = {
enable = true;
};
plugins.project-nvim = {
enable = true;
enableTelescope = true;
@ -17,27 +16,28 @@
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')";
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')";
};
};
};
}