# protols
[](https://crates.io/crates/protols)
[](https://github.com/coder3101/protols/actions/workflows/ci.yml)
A Language Server for **proto3** files. It uses tree-sitter parser for all operations.

## Features
- [x] Completion (keywords, enums and messages of the package)
- [x] Diagnostics - based on sytax errors
- [x] Document Symbols for message and enums
- [x] Go to definition - across packages
- [x] Hover - across packages
- [x] Rename - in current buffer only
## Installation
Run `cargo install protols` to install and add below to setup using [`nvim-lspconfig`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#protols)
```lua
require'lspconfig'.protols.setup{}
```