Skip to content

Commit

Permalink
feat: add veryl_ls (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
williamboman committed Jan 26, 2023
1 parent c29f9a9 commit 422b974
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ local DEFAULT_SETTINGS = {
| TypeScript | `vtsls` |
| V | `vls` |
| Vala | `vala_ls` |
| Veryl | `veryl_ls` |
| VimL | `vimls` |
| Visualforce | `visualforce_ls` |
| Vue | `volar` |
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 @@ -131,6 +131,7 @@ shopify-theme-check theme_check
typescript-language-server tsserver
vala-language-server vala_ls
verible verible
veryl-ls veryl_ls
vim-language-server vimls
visualforce-language-server visualforce_ls
vls vls
Expand Down
1 change: 1 addition & 0 deletions doc/server-mapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@
| [tsserver](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#tsserver) | [typescript-language-server](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#typescript-language-server) |
| [vala_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#vala_ls) | [vala-language-server](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#vala-language-server) |
| [verible](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#verible) | [verible](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#verible) |
| [veryl_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#veryl_ls) | [veryl-ls](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#veryl-ls) |
| [vimls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#vimls) | [vim-language-server](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#vim-language-server) |
| [visualforce_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#visualforce_ls) | [visualforce-language-server](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#visualforce-language-server) |
| [vls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#vls) | [vls](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#vls) |
Expand Down
1 change: 1 addition & 0 deletions lua/mason-lspconfig/mappings/filetype.lua
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ return {
vala = { "vala_ls" },
vb = { "omnisharp", "omnisharp_mono" },
verilog = { "svlangserver", "svls", "verible" },
veryl = { "veryl_ls" },
vim = { "vimls" },
visualforce = { "visualforce_ls" },
vlang = { "vls" },
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 @@ -132,6 +132,7 @@ M.lspconfig_to_package = {
["tsserver"] = "typescript-language-server",
["vala_ls"] = "vala-language-server",
["verible"] = "verible",
["veryl_ls"] = "veryl-ls",
["vimls"] = "vim-language-server",
["visualforce_ls"] = "visualforce-language-server",
["vls"] = "vls",
Expand Down

0 comments on commit 422b974

Please sign in to comment.