Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T01:37:02.866Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

docs/src/languages/proto.md

1.8 KB

title: Proto description: "Configure Proto language support in Zed, including language servers, formatting, and debugging."

Proto

Proto/proto3 (Protocol Buffers definition language) support is available through the Proto extension.

<!-- TBD: Clarify which language server(s) to use / Feature support. ## Setup ### Install protobuf-language-server Install protobuf-language-server and make sure it's in your PATH: ``` go install github.com/lasorda/protobuf-language-server@latest which protobuf-language-server ``` ### Install ProtoLS Install protols and make sure it's in your PATH: ``` cargo install protols which protols ``` ## Configuration ```json [settings] "lsp": { "protobuf-language-server": { "binary": { "path": "protols" } } } ``` ## Formatting ProtoLS supports formatting if you have `clang-format` installed. ```sh # MacOS: brew install clang-format # Ubuntu sudo apt-get install clang-format # Fedora sudo dnf install clang-tools-extra ``` To customize your formatting preferences, create a `.clang-format` file, e.g.: ```clang-format IndentWidth: 4 ColumnLimit: 120 ``` Or you can have zed directly invoke `clang-format` by specifying it as a [formatter](https://zed.dev/docs/reference/all-settings#formatter) in your settings: ```json [settings] "languages": { "Proto": { "format_on_save": "on", "tab_size": 4, "formatter": { "external": { "command": "clang-format", "arguments": ["-style={IndentWidth: 4, ColumnLimit: 0}"] } } }, } ``` -->
Served at tenant.openagents/omega Member data and write actions are omitted.