From f15662fa747b10cf02757a90b43e58cbd1cf3609 Mon Sep 17 00:00:00 2001 From: Mathias Rothenhaeusler Date: Wed, 2 Apr 2025 09:15:53 +0200 Subject: [PATCH] activate phpactor --- lua/custom/lspconfig.lua | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lua/custom/lspconfig.lua b/lua/custom/lspconfig.lua index c04e14d..03f0f72 100644 --- a/lua/custom/lspconfig.lua +++ b/lua/custom/lspconfig.lua @@ -163,15 +163,15 @@ lspconfig["lua_ls"].setup({ filetypes = { "lua" }, }) --- lspconfig["phpactor"].setup({ --- on_attach = on_attach, --- capabilities = capabilities, --- init_options = { --- ["language_server_phpstan.enabled"] = true, --- ["language_server_psalm.enabled"] = false, --- }, --- filetypes = { "php" }, --- }) +lspconfig["phpactor"].setup({ + on_attach = on_attach, + capabilities = capabilities, + init_options = { + ["language_server_phpstan.enabled"] = true, + ["language_server_psalm.enabled"] = false, + }, + filetypes = { "php" }, +}) lspconfig["intelephense"].setup({ capabilities = capabilities,