Skip to content

Instantly share code, notes, and snippets.

@MatteoRagni
Created December 23, 2025 11:12
Show Gist options
  • Select an option

  • Save MatteoRagni/f43c64afb07f4a2ae07c59b5a2c40e00 to your computer and use it in GitHub Desktop.

Select an option

Save MatteoRagni/f43c64afb07f4a2ae07c59b5a2c40e00 to your computer and use it in GitHub Desktop.
VSCODE Settings for clangd
{
"C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
"C_Cpp.intelliSenseEngine": "disabled",
"clangd.enable": true,
"clangd.enableCodeCompletion": true,
"clangd.arguments": [
"--background-index",
"--compile-commands-dir=${workspaceFolder}/build",
"--query-driver=/usr/bin/g++",
"--query-driver=/usr/bin/*g++"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment