C++

C++ support is available natively in Zed.

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": []
      }
    }
  }
}