aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/phpactor.lua
diff options
context:
space:
mode:
authorMichael Lingelbach <m.j.lbach@gmail.com>2021-03-20 14:58:19 -0700
committerGitHub <noreply@github.com>2021-03-20 14:58:19 -0700
commit50387f35720ddd45fb6dabcf402184add4bfc108 (patch)
tree28b5241268a891bdb53fe2385fa5812195ea8491 /lua/lspconfig/phpactor.lua
parentMerge pull request #787 from mjlbach/update_readme (diff)
parentadd phpactor (diff)
downloadnvim-lspconfig-50387f35720ddd45fb6dabcf402184add4bfc108.tar
nvim-lspconfig-50387f35720ddd45fb6dabcf402184add4bfc108.tar.gz
nvim-lspconfig-50387f35720ddd45fb6dabcf402184add4bfc108.tar.bz2
nvim-lspconfig-50387f35720ddd45fb6dabcf402184add4bfc108.tar.lz
nvim-lspconfig-50387f35720ddd45fb6dabcf402184add4bfc108.tar.xz
nvim-lspconfig-50387f35720ddd45fb6dabcf402184add4bfc108.tar.zst
nvim-lspconfig-50387f35720ddd45fb6dabcf402184add4bfc108.zip
Merge pull request #769 from andersondanilo/feature/phpactor-support
add phpactor
Diffstat (limited to 'lua/lspconfig/phpactor.lua')
-rw-r--r--lua/lspconfig/phpactor.lua32
1 files changed, 32 insertions, 0 deletions
diff --git a/lua/lspconfig/phpactor.lua b/lua/lspconfig/phpactor.lua
new file mode 100644
index 00000000..c5985279
--- /dev/null
+++ b/lua/lspconfig/phpactor.lua
@@ -0,0 +1,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