mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
15 lines
323 B
Lua
15 lines
323 B
Lua
local M = {}
|
|
|
|
function M.setup()
|
|
require("project_nvim").setup {
|
|
manual_mode = false,
|
|
detection_methods = { "lsp", "pattern" },
|
|
patterns = { ".git", ".svn", "Makefile", "package.json", "go.mod" },
|
|
ignore_lsp = {},
|
|
exclude_dirs = {},
|
|
show_hidden = false,
|
|
silent_chdir = true,
|
|
}
|
|
end
|
|
|
|
return M
|