1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 09:30:04 +08:00
SpaceVim/bundle/nvim-lspconfig-latest/lua/lspconfig/server_configurations/phpactor.lua

27 lines
717 B
Lua
Vendored

local util = require 'lspconfig.util'
return {
default_config = {
cmd = { 'phpactor', 'language-server' },
filetypes = { 'php' },
root_dir = function(pattern)
local cwd = vim.loop.cwd()
local root = util.root_pattern('composer.json', '.git')(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
]],
default_config = {
cmd = { 'phpactor', 'language-server' },
root_dir = [[root_pattern("composer.json", ".git")]],
},
},
}