Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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.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: