Skip to content

Commit

Permalink
feat: add move_analyzer (#145)
Browse files Browse the repository at this point in the history
Closes #143.
  • Loading branch information
williamboman committed Feb 7, 2023
1 parent 53f3a8b commit 8f31be1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ local DEFAULT_SETTINGS = {
| Markdown | `remark_ls` |
| Markdown | `zk` |
| Metamath Zero | `mm0_ls` |
| Move | `move_analyzer` |
| Nickel | `nickel_ls` |
| Nim | `nimls` |
| Nix | `nil_ls` |
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 @@ -72,6 +72,7 @@ ltex-ls ltex
luau-lsp luau_lsp
marksman marksman
metamath-zero-lsp mm0_ls
move-analyzer move_analyzer
neocmakelsp neocmake
nickel-lang-lsp nickel_ls
nil nil_ls
Expand Down
1 change: 1 addition & 0 deletions doc/server-mapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
| [luau_lsp](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#luau_lsp) | [luau-lsp](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#luau-lsp) |
| [marksman](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#marksman) | [marksman](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#marksman) |
| [mm0_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#mm0_ls) | [metamath-zero-lsp](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#metamath-zero-lsp) |
| [move_analyzer](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#move_analyzer) | [move-analyzer](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#move-analyzer) |
| [neocmake](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#neocmake) | [neocmakelsp](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#neocmakelsp) |
| [nickel_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#nickel_ls) | [nickel-lang-lsp](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#nickel-lang-lsp) |
| [nil_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#nil_ls) | [nil](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#nil) |
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 @@ -92,6 +92,7 @@ return {
markdown = { "grammarly", "ltex", "marksman", "prosemd_lsp", "remark_ls", "tailwindcss", "zk" },
mdx = { "tailwindcss" },
["metamath-zero"] = { "mm0_ls" },
move = { "move_analyzer" },
mustache = { "tailwindcss" },
mysql = { "sqlls", "sqls" },
ncl = { "nickel_ls" },
Expand Down
3 changes: 2 additions & 1 deletion lua/mason-lspconfig/mappings/server.lua
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ M.lspconfig_to_package = {
["grammarly"] = "grammarly-languageserver",
["graphql"] = "graphql-language-service-cli",
["groovyls"] = "groovy-language-server",
["pyre"] = "pyre",
["haxe_language_server"] = "haxe-language-server",
["hls"] = "haskell-language-server",
["hoon_ls"] = "hoon-language-server",
Expand All @@ -73,6 +72,7 @@ M.lspconfig_to_package = {
["luau_lsp"] = "luau-lsp",
["marksman"] = "marksman",
["mm0_ls"] = "metamath-zero-lsp",
["move_analyzer"] = "move-analyzer",
["neocmake"] = "neocmakelsp",
["nickel_ls"] = "nickel-lang-lsp",
["nil_ls"] = "nil",
Expand All @@ -91,6 +91,7 @@ M.lspconfig_to_package = {
["puppet"] = "puppet-editor-services",
["purescriptls"] = "purescript-language-server",
["pylsp"] = "python-lsp-server",
["pyre"] = "pyre",
["pyright"] = "pyright",
["quick_lint_js"] = "quick-lint-js",
["r_language_server"] = "r-languageserver",
Expand Down

0 comments on commit 8f31be1

Please sign in to comment.