You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
344 B
21 lines
344 B
2 years ago
|
require("project_nvim").setup({
|
||
|
manual_mode = false,
|
||
|
detection_methods = { "lsp", "pattern" },
|
||
|
patterns = {
|
||
|
".git",
|
||
|
"_darcs",
|
||
|
".hg",
|
||
|
".bzr",
|
||
|
".svn",
|
||
|
"Makefile",
|
||
|
"package.json",
|
||
|
".luarc.json",
|
||
|
".zk",
|
||
|
},
|
||
|
ignore_lsp = {},
|
||
|
exclude_dirs = {},
|
||
|
show_hidden = true,
|
||
|
silent_chdir = true,
|
||
|
datapath = vim.fn.stdpath("data"),
|
||
|
})
|