From 677baf3d713d096b66c2f8f0d4ec9f258c0e21f3 Mon Sep 17 00:00:00 2001 From: Martin Lasson Date: Sun, 4 May 2025 09:44:47 +0200 Subject: [PATCH] Remove deprecated clangd args --- nvim/lsp/clangd.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/nvim/lsp/clangd.lua b/nvim/lsp/clangd.lua index 67d7144..a8db7aa 100644 --- a/nvim/lsp/clangd.lua +++ b/nvim/lsp/clangd.lua @@ -31,9 +31,7 @@ return { "--completion-style=bundled", -- Simpler completions for faster performance "--rename-file-limit=0", -- No limit on renaming files "--header-insertion=iwyu", -- Suggest missing includes based on IWYU - "--inlay-hints", -- Enable inlay hints for parameter and type information "--limit-results=70", -- Limit autocompletion and symbol results - "--suggest-missing-includes", -- Still show missing includes suggestions "--pch-storage=disk", -- Stores precompiled headers on disk (fixes the issue where system ran out of memory when indexing large projects, not a huge performance hit on fast m2 ssds) "--log=error", -- Log only errors },