From cc0decced97f8e65861ba9657ffd179656cf593c Mon Sep 17 00:00:00 2001 From: Ashar Date: Mon, 19 Aug 2024 14:23:52 +0530 Subject: [PATCH 1/2] chore: add install instruction for VS code --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 818d39f..148358b 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,16 @@ A Language Server for **proto3** files. It uses tree-sitter parser for all opera ## Installation +### Neovim 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{} ``` + +### Visual Studio Code + +You can install an extension called [Protobuf Language Support](https://marketplace.visualstudio.com/items?itemName=ianandhum.protobuf-support) which uses this LSP under the hood. + +> NOTE: We do not own or maintain this extension. From e71e81b4593db2bb55f4101da0cbb167172e974f Mon Sep 17 00:00:00 2001 From: Ashar Date: Mon, 19 Aug 2024 14:31:12 +0530 Subject: [PATCH 2/2] refactor: add url to repository --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 148358b..8bee80c 100644 --- a/README.md +++ b/README.md @@ -28,4 +28,4 @@ require'lspconfig'.protols.setup{} You can install an extension called [Protobuf Language Support](https://marketplace.visualstudio.com/items?itemName=ianandhum.protobuf-support) which uses this LSP under the hood. -> NOTE: We do not own or maintain this extension. +> NOTE: It is [open-sourced](https://github.com/ianandhum/vscode-protobuf-support) but do not own or maintain it.