aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/phpactor.lua
blob: c598527980edb0a6870a11580fed538ca5a5f253 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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/develop/usage/standalone.html#installation-global
]];
    default_config = {
      cmd = {"phpactor", "language-server"};
      root_dir = [[root_pattern("composer.json", ".git")]];
    };
  };
}

-- vim:et ts=2 sw=2