mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-10 06:54:19 +00:00
31919965a1
* vscode: fine-tuned .gitignore to allow extra untracked files in .vscode folder * vscode: temporary disabled toolchain-provided clangd * Update sublime project to match vscode config Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
25 lines
729 B
Text
25 lines
729 B
Text
{
|
|
"folders":
|
|
[
|
|
{
|
|
"path": ".",
|
|
}
|
|
],
|
|
"settings": {
|
|
"LSP": {
|
|
"clangd": {
|
|
"enabled": true,
|
|
"initializationOptions": {
|
|
// Use with toolchain version 39+
|
|
// Set `"binary": "custom",` option in LSP-clangd config to use toolchain clangd
|
|
// "custom_command": ["toolchain/current/bin/clangd"],
|
|
|
|
"clangd.compile-commands-dir": "build/latest",
|
|
"clangd.header-insertion": "never",
|
|
"clangd.query-driver": "**/arm-none-eabi-*",
|
|
"clangd.clang-tidy": true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|