mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
14 lines
375 B
Lua
14 lines
375 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/phpactor/phpactor
|
|
---
|
|
--- Installation: https://phpactor.readthedocs.io/en/master/usage/standalone.html#global-installation
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'phpactor', 'language-server' },
|
|
filetypes = { 'php' },
|
|
root_markers = { '.git', 'composer.json', '.phpactor.json', '.phpactor.yml' },
|
|
workspace_required = true,
|
|
}
|