diff options
| author | Anderson Danilo <contact@andersondanilo.com> | 2021-03-06 18:13:59 -0300 |
|---|---|---|
| committer | Anderson Danilo <contact@andersondanilo.com> | 2021-03-06 18:13:59 -0300 |
| commit | 41d6db49a70113adecbd369acce500f1508da0e7 (patch) | |
| tree | 0d487660b77f27c611f561ebd9d75569d015b68c /lua | |
| parent | [docgen] Update CONFIG.md (diff) | |
| download | nvim-lspconfig-41d6db49a70113adecbd369acce500f1508da0e7.tar nvim-lspconfig-41d6db49a70113adecbd369acce500f1508da0e7.tar.gz nvim-lspconfig-41d6db49a70113adecbd369acce500f1508da0e7.tar.bz2 nvim-lspconfig-41d6db49a70113adecbd369acce500f1508da0e7.tar.lz nvim-lspconfig-41d6db49a70113adecbd369acce500f1508da0e7.tar.xz nvim-lspconfig-41d6db49a70113adecbd369acce500f1508da0e7.tar.zst nvim-lspconfig-41d6db49a70113adecbd369acce500f1508da0e7.zip | |
add phpactor
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/phpactor.lua | 32 |
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 |
