mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-10 06:54:19 +00:00
afc4e299a1
* toolchain: v39 * vscode, sublime: re-enabled clangd binary from toolchain as language server * Sublime project: update for toolchain v39 Co-authored-by: あく <alleteam@gmail.com>
23 lines
671 B
Text
23 lines
671 B
Text
{
|
|
"folders":
|
|
[
|
|
{
|
|
"path": ".",
|
|
}
|
|
],
|
|
"settings": {
|
|
"LSP": {
|
|
"clangd": {
|
|
"enabled": true,
|
|
"initializationOptions": {
|
|
// 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,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|