Is there a way to configure clangd in #neovim so that autocompletion is disabled? I need it for the debugger to work but I do find suggestions distracting.

@pythno Try ...
1. Install #clangd but don't setup LSP. This will disable auto completions.
2. Use #codelldb for debugging -> https://igorlfs.github.io/neovim-cpp-dbg

#neovim

Building and Debugging C++ in Neovim

@javalps I will try that. My understanding is that clangd is an implementation of the LSP. So if I don't have LSP integrated there is no way for clangd to work?

@pythno #clangd is a LSP for c language and c++. So, if you don't install clangd it'll not work.

#neovim

@pythno There's another simple thing you could do. Suppose you're using #nvimcmp for completions then, disable the plugin for c and c++ files.

#neovim