project-nvim
URL: https://github.com/DrKJeff16/project.nvim/
Maintainers: Austin Horstman
project.nvim is an all in one neovim plugin written in lua that provides superior project management.
plugins.project-nvim.enable
Whether to enable project-nvim.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.project-nvim.enableTelescope
Whether to enable project-nvim telescope integration.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.project-nvim.package
The project-nvim package to use.
Type: package
Default:
pkgs.vimPlugins.project-nvim
Declared by:
plugins.project-nvim.autoLoad
Whether to automatically load project-nvim when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.project-nvim.callSetup
Whether to generate the standard require('project').setup(...) call for this plugin.
By default, this follows the plugin’s built-in behavior. Set this to false
to disable the generated setup call, or to true to force it even when the
plugin would only call it conditionally.
Type: null or boolean
Default:
null
Declared by:
plugins.project-nvim.settings
Options provided to the require('project').setup function.
Type: lua value
Default:
{ }
Example:
{
exclude_dirs = [
"/home/user/secret-directory"
];
lsp = {
enabled = true;
ignore = [
"tsserver"
];
};
patterns = [
".git"
];
show_hidden = true;
silent_chdir = false;
}
Declared by: