Skip to content

Commit

Permalink
feat: add standardrb (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
merrilymeredith committed Mar 6, 2023
1 parent e4badf7 commit a31e011
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,8 @@ local DEFAULT_SETTINGS = {
| Rome | `rome` |
| Ruby | `ruby_ls` |
| Ruby | `solargraph` |
| Ruby | `sorbet` |
| Ruby | `standardrb` |
| Rust | `rust_analyzer` |
| SQL | `sqlls` |
| SQL | `sqls` |
Expand All @@ -270,7 +272,6 @@ local DEFAULT_SETTINGS = {
| Solidity | `solang` |
| Solidity | `solc` |
| Solidity | `solidity` |
| Sorbet | `sorbet` |
| Sphinx | `esbonio` |
| Stylelint | `stylelint_lsp` |
| Svelte | `svelte` |
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 @@ -121,6 +121,7 @@ sourcery sourcery
spectral-language-server spectral
sqlls sqlls
sqls sqls
standardrb standardrb
stylelint-lsp stylelint_lsp
svelte-language-server svelte
svlangserver svlangserver
Expand Down
1 change: 1 addition & 0 deletions doc/server-mapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@
| [spectral](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#spectral) | [spectral-language-server](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#spectral-language-server) |
| [sqlls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#sqlls) | [sqlls](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#sqlls) |
| [sqls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#sqls) | [sqls](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#sqls) |
| [standardrb](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#standardrb) | [standardrb](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#standardrb) |
| [stylelint_lsp](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#stylelint_lsp) | [stylelint-lsp](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#stylelint-lsp) |
| [svelte](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#svelte) | [svelte-language-server](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#svelte-language-server) |
| [svlangserver](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#svlangserver) | [svlangserver](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#svlangserver) |
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 @@ -134,7 +134,7 @@ return {
rnoweb = { "ltex" },
robot = { "robotframework_ls" },
rst = { "esbonio", "ltex" },
ruby = { "ruby_ls", "solargraph", "sorbet" },
ruby = { "ruby_ls", "solargraph", "sorbet", "standardrb" },
rust = { "rust_analyzer" },
sass = { "emmet_ls", "tailwindcss" },
scss = { "cssls", "emmet_ls", "stylelint_lsp", "tailwindcss" },
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 @@ -122,6 +122,7 @@ M.lspconfig_to_package = {
["spectral"] = "spectral-language-server",
["sqlls"] = "sqlls",
["sqls"] = "sqls",
["standardrb"] = "standardrb",
["stylelint_lsp"] = "stylelint-lsp",
["svelte"] = "svelte-language-server",
["svlangserver"] = "svlangserver",
Expand Down

0 comments on commit a31e011

Please sign in to comment.