mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:20:06 +08:00
32 lines
829 B
Lua
Vendored
32 lines
829 B
Lua
Vendored
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.
|
|
]],
|
|
default_config = {
|
|
root_dir = [[root_pattern("Move.toml")]],
|
|
},
|
|
},
|
|
}
|