mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:40:06 +08:00
28 lines
610 B
Lua
28 lines
610 B
Lua
local configs = require 'lspconfig/configs'
|
|
local util = require 'lspconfig/util'
|
|
|
|
local server_name = 'psalm'
|
|
local bin_name = 'psalm-language-server'
|
|
|
|
configs[server_name] = {
|
|
default_config = {
|
|
cmd = { bin_name },
|
|
filetypes = { 'php' },
|
|
root_dir = util.root_pattern('psalm.xml', 'psalm.xml.dist'),
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/vimeo/psalm
|
|
|
|
Can be installed with composer.
|
|
```sh
|
|
composer global require vimeo/psalm
|
|
```
|
|
]],
|
|
default_config = {
|
|
cmd = { 'psalm-language-server' },
|
|
root_dir = [[root_pattern("psalm.xml", "psalm.xml.dist")]],
|
|
},
|
|
},
|
|
}
|