Skip to content

Commit

Permalink
feat: add pyre (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
williamboman committed Jan 23, 2023
1 parent d7ff61a commit faeeb5e
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 @@ -241,6 +241,7 @@ local DEFAULT_SETTINGS = {
| Puppet | `puppet` |
| PureScript | `purescriptls` |
| Python | `jedi_language_server` |
| Python | `pyre` |
| Python | `pyright` |
| Python | `sourcery` |
| Python [(docs)][pylsp] | `pylsp` |
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 @@ -89,6 +89,7 @@ psalm psalm
puppet-editor-services puppet
purescript-language-server purescriptls
python-lsp-server pylsp
pyre pyre
pyright pyright
quick-lint-js quick_lint_js
r-languageserver r_language_server
Expand Down
1 change: 1 addition & 0 deletions doc/server-mapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
| [puppet](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#puppet) | [puppet-editor-services](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#puppet-editor-services) |
| [purescriptls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#purescriptls) | [purescript-language-server](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#purescript-language-server) |
| [pylsp](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#pylsp) | [python-lsp-server](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#python-lsp-server) |
| [pyre](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#pyre) | [pyre](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#pyre) |
| [pyright](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#pyright) | [pyright](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#pyright) |
| [quick_lint_js](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#quick_lint_js) | [quick-lint-js](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#quick-lint-js) |
| [r_language_server](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#r_language_server) | [r-languageserver](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#r-languageserver) |
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 @@ -119,7 +119,7 @@ return {
ps1 = { "powershell_es" },
puppet = { "puppet" },
purescript = { "purescriptls" },
python = { "jedi_language_server", "pylsp", "pyright", "ruff_lsp", "sourcery" },
python = { "jedi_language_server", "pylsp", "pyre", "pyright", "ruff_lsp", "sourcery" },
ql = { "codeqlls" },
r = { "r_language_server" },
raku = { "raku_navigator" },
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 @@ -55,6 +55,7 @@ M.lspconfig_to_package = {
["grammarly"] = "grammarly-languageserver",
["graphql"] = "graphql-language-service-cli",
["groovyls"] = "groovy-language-server",
["pyre"] = "pyre",
["haxe_language_server"] = "haxe-language-server",
["hls"] = "haskell-language-server",
["hoon_ls"] = "hoon-language-server",
Expand Down

0 comments on commit faeeb5e

Please sign in to comment.