mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2026-05-05 16:46:11 +02:00
16 lines
302 B
Lua
16 lines
302 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/vimeo/psalm
|
|
---
|
|
--- Can be installed with composer.
|
|
--- ```sh
|
|
--- composer global require vimeo/psalm
|
|
--- ```
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'psalm', '--language-server' },
|
|
filetypes = { 'php' },
|
|
root_markers = { 'psalm.xml', 'psalm.xml.dist' },
|
|
}
|