Skip to content

Commit

Permalink
feat: add dagger's cuelsp LSP (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosnils committed Aug 3, 2022
1 parent e95ee7b commit af46a16
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ local DEFAULT_SETTINGS = {
| CodeQL | `codeqlls` |
| Crystal | `crystalline` |
| Cucumber | `cucumber_language_server` |
| Cue | `dagger` |
| Deno | `denols` |
| Dhall | `dhall_lsp_server` |
| Diagnostic (general purpose server) | `diagnosticls` |
Expand Down
1 change: 1 addition & 0 deletions doc/server-mapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
| [cssls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#cssls) | css-lsp |
| [cssmodules_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#cssmodules_ls) | cssmodules-language-server |
| [cucumber_language_server](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#cucumber_language_server) | cucumber-language-server |
| [dagger](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#dagger) | cuelsp |
| [denols](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#denols) | deno |
| [dhall_lsp_server](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#dhall_lsp_server) | dhall-lsp |
| [diagnosticls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#diagnosticls) | diagnostic-languageserver |
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 @@ -26,6 +26,7 @@ return {
css = { "cssls", "emmet_ls", "stylelint_lsp", "tailwindcss" },
cucumber = { "cucumber_language_server" },
cuda = { "clangd" },
cue = { "dagger" },
d = { "serve_d" },
dhall = { "dhall_lsp_server" },
["django-html"] = { "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 @@ -25,6 +25,7 @@ M.lspconfig_to_package = {
["cssls"] = "css-lsp",
["cssmodules_ls"] = "cssmodules-language-server",
["cucumber_language_server"] = "cucumber-language-server",
["dagger"] = "cuelsp",
["denols"] = "deno",
["dhall_lsp_server"] = "dhall-lsp",
["diagnosticls"] = "diagnostic-languageserver",
Expand Down

0 comments on commit af46a16

Please sign in to comment.