Files
nixos/hosts/nb/modules/development/nvim/config/project.lua
2025-12-01 22:05:24 +01:00

14 lines
396 B
Lua

local status_ok, project = pcall(require, "project")
if not status_ok then
return
end
project.setup({
use_lsp = false, -- Use pattern matching only (equivalent to old detection_methods = { "pattern" })
manual_mode = false,
patterns = { ".git", "_darcs", ".hg", ".bzr", ".svn", "Makefile", "package.json", "pom.xml" },
show_hidden = false,
silent_chdir = true,
ignore_lsp = {},
})