change config
This commit is contained in:
parent
666df2ef74
commit
b867472be0
@ -1,43 +1,41 @@
|
|||||||
require("project_nvim").setup{
|
require("project_nvim").setup({
|
||||||
|
|
||||||
-- Manual mode doesn't automatically change your root directory, so you have
|
-- Manual mode doesn't automatically change your root directory, so you have
|
||||||
-- the option to manually do so using `:ProjectRoot` command.
|
-- the option to manually do so using `:ProjectRoot` command.
|
||||||
manual_mode = false,
|
manual_mode = false,
|
||||||
|
|
||||||
-- Methods of detecting the root directory. **"lsp"** uses the native neovim
|
-- Methods of detecting the root directory. **"lsp"** uses the native neovim
|
||||||
-- lsp, while **"pattern"** uses vim-rooter like glob pattern matching. Here
|
-- lsp, while **"pattern"** uses vim-rooter like glob pattern matching. Here
|
||||||
-- order matters: if one is not detected, the other is used as fallback. You
|
-- order matters: if one is not detected, the other is used as fallback. You
|
||||||
-- can also delete or rearangne the detection methods.
|
-- can also delete or rearangne the detection methods.
|
||||||
detection_methods = { "lsp", "pattern" },
|
detection_methods = { "lsp", "pattern" },
|
||||||
|
|
||||||
-- All the patterns used to detect root dir, when **"pattern"** is in
|
-- All the patterns used to detect root dir, when **"pattern"** is in
|
||||||
-- detection_methods
|
-- detection_methods
|
||||||
patterns = { ".git", "_darcs", ".hg", ".bzr", ".svn", "Makefile", "package.json" },
|
patterns = { ".git", "_darcs", ".hg", ".bzr", ".svn", "Makefile", "package.json" },
|
||||||
|
|
||||||
-- Table of lsp clients to ignore by name
|
-- Table of lsp clients to ignore by name
|
||||||
-- eg: { "efm", ... }
|
-- eg: { "efm", ... }
|
||||||
ignore_lsp = {},
|
ignore_lsp = {},
|
||||||
|
|
||||||
-- Don't calculate root dir on specific directories
|
-- Don't calculate root dir on specific directories
|
||||||
-- Ex: { "~/.cargo/*", ... }
|
-- Ex: { "~/.cargo/*", ... }
|
||||||
exclude_dirs = {},
|
exclude_dirs = {},
|
||||||
|
|
||||||
-- Show hidden files in telescope
|
-- Show hidden files in telescope
|
||||||
show_hidden = false,
|
show_hidden = false,
|
||||||
|
|
||||||
-- When set to false, you will get a message when project.nvim changes your
|
-- When set to false, you will get a message when project.nvim changes your
|
||||||
-- directory.
|
-- directory.
|
||||||
silent_chdir = true,
|
silent_chdir = true,
|
||||||
|
|
||||||
-- What scope to change the directory, valid options are
|
-- What scope to change the directory, valid options are
|
||||||
-- * global (default)
|
-- * global (default)
|
||||||
-- * tab
|
-- * tab
|
||||||
-- * win
|
-- * win
|
||||||
scope_chdir = 'global',
|
scope_chdir = "global",
|
||||||
|
|
||||||
-- Path where project.nvim will store the project history for use in
|
-- Path where project.nvim will store the project history for use in
|
||||||
-- telescope
|
-- telescope
|
||||||
datapath = vim.fn.stdpath("data"),
|
datapath = vim.fn.stdpath("data"),
|
||||||
|
})
|
||||||
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user