1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00
dotfiles/nvim/lua/user/plugins/lang/php/lsp.lua

25 lines
533 B
Lua

local servers = {
laravel_ls = {
mason = false,
cmd = { "/home/pnx/code/go/laravel-ls/start.sh", "--log-level", "trace" }
},
phpactor = require 'user.plugins.lang.php.lsp.phpactor',
-- Use intelephense as main server.
intelephense = {
settings = {
intelephense = {
-- files = {
-- maxSize = 10000000
-- }
}
}
}
}
return {
"neovim/nvim-lspconfig",
opts = {
servers = servers
},
}