[LSP] Add phpactor

This commit is contained in:
2025-11-05 10:44:17 +01:00
parent 5c30d33696
commit a5f289dcf0
2 changed files with 10 additions and 0 deletions

View File

@@ -25,6 +25,14 @@ lsp.config("jsonls", {
on_attach = on_attach, on_attach = on_attach,
}) })
-- ┌ ┐
-- │ PHP │
-- └ ┘
lsp.config("phpactor", {
capabilities = capabilities,
on_attach = on_attach,
})
-- ┌ ┐ -- ┌ ┐
-- │ Vue │ -- │ Vue │
-- └ ┘ -- └ ┘
@@ -75,5 +83,6 @@ local enable = vim.lsp.enable
enable("jsonls") enable("jsonls")
enable("html") enable("html")
enable("cssls") enable("cssls")
enable("phpactor")
enable("vue_ls") enable("vue_ls")
enable("vtsls") enable("vtsls")

View File

@@ -36,6 +36,7 @@ return {
"jdtls", "jdtls",
"marksman", "marksman",
"lua_ls", "lua_ls",
"phpactor",
"pyright", "pyright",
"rust_analyzer", "rust_analyzer",
"ruby_lsp", "ruby_lsp",