blob: 6c731d1ce149376a376126636929b08e96d37ad3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-- 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.
]],
},
}
|