1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 12:40:05 +08:00
SpaceVim/bundle/nvim-lspconfig/lua/lspconfig/phpactor.lua
2021-10-05 15:13:10 +08:00

31 lines
835 B
Lua

local configs = require 'lspconfig/configs'
local util = require 'lspconfig/util'
local server_name = 'phpactor'
local bin_name = 'phpactor'
configs[server_name] = {
default_config = {
cmd = { bin_name, '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")]],
},
},
}