mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2026-05-06 17:16:09 +02:00
36 lines
1.1 KiB
Lua
36 lines
1.1 KiB
Lua
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
-- This config is DEPRECATED.
|
|
-- Use the configs in `lsp/` instead (requires Nvim 0.11).
|
|
--
|
|
-- ALL configs in `lua/lspconfig/configs/` will be DELETED.
|
|
-- They exist only to support Nvim 0.10 or older.
|
|
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'move-analyzer' },
|
|
filetypes = { 'move' },
|
|
root_dir = function(fname)
|
|
local move_package_dir = util.root_pattern 'Move.toml'(fname)
|
|
return move_package_dir
|
|
end,
|
|
},
|
|
commands = {},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/move-language/move/tree/main/language/move-analyzer
|
|
|
|
Language server for Move
|
|
|
|
The `move-analyzer` can be installed by running:
|
|
|
|
```
|
|
cargo install --git https://github.com/move-language/move move-analyzer
|
|
```
|
|
|
|
See [`move-analyzer`'s doc](https://github.com/move-language/move/blob/1b258a06e3c7d2bc9174578aac92cca3ac19de71/language/move-analyzer/editors/code/README.md#how-to-install) for details.
|
|
]],
|
|
},
|
|
}
|