mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2026-05-06 09:06:10 +02:00
30 lines
949 B
Lua
30 lines
949 B
Lua
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
-- This config is DEPRECATED.
|
|
-- Use the configs in `lsp/` instead (requires Nvim 0.11).
|
|
--
|
|
-- ALL configs in `lua/lspconfig/configs/` will be DELETED.
|
|
-- They exist only to support Nvim 0.10 or older.
|
|
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'phpactor', 'language-server' },
|
|
filetypes = { 'php' },
|
|
root_dir = function(pattern)
|
|
local cwd = vim.uv.cwd()
|
|
local root = util.root_pattern('composer.json', '.git', '.phpactor.json', '.phpactor.yml')(pattern)
|
|
|
|
-- prefer cwd if root is a descendant
|
|
return util.path.is_descendant(cwd, root) and cwd or root
|
|
end,
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/phpactor/phpactor
|
|
|
|
Installation: https://phpactor.readthedocs.io/en/master/usage/standalone.html#global-installation
|
|
]],
|
|
},
|
|
}
|