Skip to content

Commit

Permalink
feat: add drools_lsp (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
errantepiphany committed Jan 13, 2023
1 parent 3751eb5 commit 8a6d7a4
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 @@ -181,6 +181,7 @@ local DEFAULT_SETTINGS = {
| Dlang | `serve_d` |
| Docker | `dockerls` |
| Dot | `dotls` |
| Drools | `drools_lsp` |
| EFM (general purpose server) | `efm` |
| ESLint | `eslint` |
| Elixir | `elixirls` |
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 @@ -33,6 +33,7 @@ dhall-lsp dhall_lsp_server
diagnostic-languageserver diagnosticls
dockerfile-language-server dockerls
dot-language-server dotls
drools-lsp drools_lsp
efm efm
elixir-ls elixirls
elm-language-server elmls
Expand Down
1 change: 1 addition & 0 deletions doc/server-mapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
| [diagnosticls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#diagnosticls) | [diagnostic-languageserver](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#diagnostic-languageserver) |
| [dockerls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#dockerls) | [dockerfile-language-server](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#dockerfile-language-server) |
| [dotls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#dotls) | [dot-language-server](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#dot-language-server) |
| [drools_lsp](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#drools_lsp) | [drools-lsp](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#drools-lsp) |
| [efm](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#efm) | [efm](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#efm) |
| [elixirls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#elixirls) | [elixir-ls](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#elixir-ls) |
| [elmls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#elmls) | [elm-language-server](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#elm-language-server) |
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 @@ -33,6 +33,7 @@ return {
["django-html"] = { "tailwindcss" },
dockerfile = { "dockerls" },
dot = { "dotls" },
drools = { "drools_lsp" },
dune = { "ocamllsp" },
edge = { "tailwindcss" },
edn = { "clojure_lsp" },
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 @@ -33,6 +33,7 @@ M.lspconfig_to_package = {
["diagnosticls"] = "diagnostic-languageserver",
["dockerls"] = "dockerfile-language-server",
["dotls"] = "dot-language-server",
["drools_lsp"] = "drools-lsp",
["efm"] = "efm",
["elixirls"] = "elixir-ls",
["elmls"] = "elm-language-server",
Expand Down

0 comments on commit 8a6d7a4

Please sign in to comment.