1                 // Configure cpptools IntelliSense
   2                 "C_Cpp.intelliSenseCachePath": "{{OUTPUTDIR}}/.vscode",
   3                 "C_Cpp.default.compileCommands": "{{OUTPUTDIR}}/compile_commands.json",
   4                 "C_Cpp.default.cppStandard": "c++03",
   5                 "C_Cpp.default.compilerPath": "{{COMPILER}}",
   6 
   7                 // Configure clangd
   8                 "clangd.arguments": [
   9                         "-background-index",
  10                         "-compile-commands-dir={{OUTPUTDIR}}"
  11                 ],
  12 
  13                 // Disable conflicting features from cpptools
  14                 "C_Cpp.autocomplete": "Disabled",
  15                 "C_Cpp.errorSquiggles": "Disabled",
  16                 "C_Cpp.formatting": "Disabled",
  17                 "C_Cpp.intelliSenseEngine": "Disabled",