Add .config/nvim/lua/plugins/project.lua
This commit is contained in:
parent
62f381589e
commit
03ab680f54
1 changed files with 16 additions and 0 deletions
16
dot_config/nvim/lua/plugins/project.lua
Normal file
16
dot_config/nvim/lua/plugins/project.lua
Normal file
|
@ -0,0 +1,16 @@
|
|||
return {
|
||||
"ahmedkhalf/project.nvim",
|
||||
config = function()
|
||||
require('project_nvim').setup({
|
||||
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',
|
||||
datapath = vim.fn.stdpath("data"),
|
||||
})
|
||||
end,
|
||||
}
|
Loading…
Reference in a new issue