Created
December 23, 2025 11:12
-
-
Save MatteoRagni/f43c64afb07f4a2ae07c59b5a2c40e00 to your computer and use it in GitHub Desktop.
VSCODE Settings for clangd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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