mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01: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' },
|
|
}
|