Hyprland-dotfiles/nvim/lua/modules/configs/tool/project.lua
2024-07-21 02:51:17 -04:00

14 lines
406 B
Lua

return function()
require("modules.utils").load_plugin("project_nvim", {
manual_mode = false,
detection_methods = { "lsp", "pattern" },
patterns = { ".git", "_darcs", ".hg", ".bzr", ".svn", "Makefile", "package.json" },
ignore_lsp = { "null-ls", "copilot" },
exclude_dirs = {},
show_hidden = false,
silent_chdir = true,
scope_chdir = "global",
datapath = vim.fn.stdpath("data"),
})
end