aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/phpactor.lua
diff options
context:
space:
mode:
authorMichael Lingelbach <m.j.lbach@gmail.com>2021-07-03 15:55:59 -0700
committerGitHub <noreply@github.com>2021-07-03 15:55:59 -0700
commite1160be89ae6a3ece4664c8e32a82b8637f4b177 (patch)
tree77d533dc9606ca7e9b30d1a96baebf3de325d2a8 /lua/lspconfig/phpactor.lua
parent[docgen] Update CONFIG.md (diff)
parentci: lint and format with stylua (diff)
downloadnvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.tar
nvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.tar.gz
nvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.tar.bz2
nvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.tar.lz
nvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.tar.xz
nvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.tar.zst
nvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.zip
Merge pull request #1029 from mjlbach/ci/format_with_stylua
ci: lint and format with stylua
Diffstat (limited to 'lua/lspconfig/phpactor.lua')
-rw-r--r--lua/lspconfig/phpactor.lua30
1 files changed, 15 insertions, 15 deletions
diff --git a/lua/lspconfig/phpactor.lua b/lua/lspconfig/phpactor.lua
index b022cf1b..f358f092 100644
--- a/lua/lspconfig/phpactor.lua
+++ b/lua/lspconfig/phpactor.lua
@@ -1,32 +1,32 @@
-local configs = require 'lspconfig/configs'
-local util = require 'lspconfig/util'
+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);
+ 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;
- };
+ 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")]];
- };
- };
+ cmd = { "phpactor", "language-server" },
+ root_dir = [[root_pattern("composer.json", ".git")]],
+ },
+ },
}
-- vim:et ts=2 sw=2