mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:20:06 +08:00
25 lines
428 B
Lua
Vendored
25 lines
428 B
Lua
Vendored
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'veryl-ls' },
|
|
filetypes = { 'veryl' },
|
|
root_dir = util.find_git_ancestor,
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/dalance/veryl
|
|
|
|
Language server for Veryl
|
|
|
|
`veryl-ls` can be installed via `cargo`:
|
|
```sh
|
|
cargo install veryl-ls
|
|
```
|
|
]],
|
|
default_config = {
|
|
root_dir = [[util.find_git_ancestor]],
|
|
},
|
|
},
|
|
}
|