Skip to content

Commit

Permalink
Add support for protols
Browse files Browse the repository at this point in the history
  • Loading branch information
coder3101 committed Dec 21, 2024
1 parent 2daa892 commit 9be54b4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,7 @@ local DEFAULT_SETTINGS = {
| Prisma | [`prismals`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#prismals) |
| Protobuf | [`buf_ls`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#buf_ls) |
| Protobuf | [`pbls`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#pbls) |
| Protobuf | [`protols`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#protols) |
| Puppet | [`puppet`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#puppet) |
| PureScript | [`purescriptls`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#purescriptls) |
| Python | [`ast_grep`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#ast_grep) |
Expand Down
1 change: 1 addition & 0 deletions doc/mason-lspconfig-mapping.txt
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ pkgbuild-language-server pkgbuild_language_server
powershell-editor-services powershell_es
prisma-language-server prismals
prosemd-lsp prosemd_lsp
protols protols
psalm psalm
puppet-editor-services puppet
purescript-language-server purescriptls
Expand Down
1 change: 1 addition & 0 deletions doc/server-mapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@
| [powershell_es](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#powershell_es) | [powershell-editor-services](https://mason-registry.dev/registry/list#powershell-editor-services) |
| [prismals](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#prismals) | [prisma-language-server](https://mason-registry.dev/registry/list#prisma-language-server) |
| [prosemd_lsp](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#prosemd_lsp) | [prosemd-lsp](https://mason-registry.dev/registry/list#prosemd-lsp) |
| [protols](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#protols) | [protols](https://mason-registry.dev/registry/list#protols) |
| [psalm](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#psalm) | [psalm](https://mason-registry.dev/registry/list#psalm) |
| [puppet](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#puppet) | [puppet-editor-services](https://mason-registry.dev/registry/list#puppet-editor-services) |
| [purescriptls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#purescriptls) | [purescript-language-server](https://mason-registry.dev/registry/list#purescript-language-server) |
Expand Down
2 changes: 1 addition & 1 deletion lua/mason-lspconfig/mappings/filetype.lua
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ return {
plaintex = { "ltex", "texlab" },
postcss = { "tailwindcss", "unocss" },
prisma = { "prismals" },
proto = { "buf_ls", "clangd", "pbls" },
proto = { "buf_ls", "clangd", "pbls", "protols" },
ps1 = { "powershell_es" },
pug = { "emmet_language_server", "emmet_ls" },
puppet = { "puppet" },
Expand Down
1 change: 1 addition & 0 deletions lua/mason-lspconfig/mappings/server.lua
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ M.lspconfig_to_package = {
["powershell_es"] = "powershell-editor-services",
["prismals"] = "prisma-language-server",
["prosemd_lsp"] = "prosemd-lsp",
["protols"] = "protols",
["psalm"] = "psalm",
["puppet"] = "puppet-editor-services",
["purescriptls"] = "purescript-language-server",
Expand Down

0 comments on commit 9be54b4

Please sign in to comment.