This PR adds documentation for how to configure the binary path for `clangd`. Release Notes: - N/A
496 B
496 B
C++
C++ support is available natively in Zed.
- Tree Sitter: tree-sitter/tree-sitter-cpp
- Language Server: clangd/clangd
Binary
You can configure which clangd binary Zed should use.
To use a binary in a custom location, add the following to your settings.json:
{
"lsp": {
"clangd": {
"binary": {
"path": "/path/to/clangd",
"args": []
}
}
}
}