14 lines
223 B
Lua
14 lines
223 B
Lua
---@type vim.lsp.Config
|
|
return {
|
|
filetypes = { "php" },
|
|
root_markers = { ".git" },
|
|
---@type lspconfig.settings.intelephense
|
|
settings = {
|
|
intelephense = {
|
|
environment = {
|
|
phpVersion = "8.3.30",
|
|
},
|
|
},
|
|
},
|
|
}
|