-
Notifications
You must be signed in to change notification settings - Fork 273
PHP language server
Arnold Chand edited this page Oct 27, 2019
·
2 revisions
This is a guide on how to integrate a php language server with LanguageClient-neovim.
- nvim/vim
- nodejs and npm
Install language server, we use intelephense
as the language server.
npm i intelephense -g
Next we add it to the server commands/
let g:LanguageClient_serverCommands = {
" other server commands...
\ 'php': ['intelephense', '--stdio'],
\ }
No server configuration needed in settings.json
file.