return { "neovim/nvim-lspconfig", event = "LazyFile", dependencies = { "mason.nvim", { "mason-org/mason-lspconfig.nvim", config = function() end }, }, opts = { servers = { -- Ensure mason installs the server clangd = { cmd = { "clangd", "--header-insertion=never", "--all-scopes-completion", "-j=4", "--pch-storage=memory", "--compile-commands-dir=build", "--clang-tidy", "--background-index", "--completion-style=detailed", "--function-arg-placeholders=false" }, }, }, }, }