diff --git a/README.md b/README.md index 6327061a5..29e0c2796 100644 --- a/README.md +++ b/README.md @@ -217,6 +217,7 @@ local DEFAULT_SETTINGS = { | Cucumber | [`cucumber_language_server`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#cucumber_language_server) | | Cue | [`dagger`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#dagger) | | Cypher | [`cypher_ls`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#cypher_ls) | +| Daedalus | [`daedalus_ls`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#daedalus_ls) | Dart | [`ast_grep`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#ast_grep) | | Dhall | [`dhall_lsp_server`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#dhall_lsp_server) | | Django | [`jinja_lsp`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#jinja_lsp) | diff --git a/doc/mason-lspconfig-mapping.txt b/doc/mason-lspconfig-mapping.txt index 795c16154..08efcf903 100644 --- a/doc/mason-lspconfig-mapping.txt +++ b/doc/mason-lspconfig-mapping.txt @@ -41,6 +41,7 @@ cucumber-language-server cucumber_language_server custom-elements-languageserver custom_elements_ls cypher-language-server cypher_ls cuelsp dagger +daedalus-language-server daedalus_ls deno denols dhall-lsp dhall_lsp_server diagnostic-languageserver diagnosticls @@ -223,4 +224,4 @@ yaml-language-server yamlls zk zk zls zls -vim:tw=78:ft=help:norl:expandtab:sw=4 \ No newline at end of file +vim:tw=78:ft=help:norl:expandtab:sw=4 diff --git a/lua/mason-lspconfig/mappings/server.lua b/lua/mason-lspconfig/mappings/server.lua index 73d9f9895..2529a300a 100644 --- a/lua/mason-lspconfig/mappings/server.lua +++ b/lua/mason-lspconfig/mappings/server.lua @@ -40,6 +40,7 @@ M.lspconfig_to_package = { ["cucumber_language_server"] = "cucumber-language-server", ["custom_elements_ls"] = "custom-elements-languageserver", ["cypher_ls"] = "cypher-language-server", + ["daedalus_ls"] = "daedalus-language-server", ["dagger"] = "cuelsp", ["denols"] = "deno", ["dhall_lsp_server"] = "dhall-lsp",