Swap from phpactor to Intelephense, which seems to do a better job
This commit is contained in:
parent
7d64ff07b0
commit
c88775b450
1 changed files with 8 additions and 11 deletions
|
@ -20,6 +20,14 @@ const lspServers = [
|
|||
install: 'npm install -g dockerfile-language-server-nodejs',
|
||||
},
|
||||
|
||||
{
|
||||
name: 'intelephense',
|
||||
filetype: 'php',
|
||||
path: expand('~/.local/bin/intelephense'),
|
||||
args: ['--stdio'],
|
||||
install: 'npm install -g intelephense',
|
||||
},
|
||||
|
||||
{
|
||||
name: 'lua-language-server',
|
||||
filetype: 'lua',
|
||||
|
@ -46,17 +54,6 @@ const lspServers = [
|
|||
|
||||
perl.Lsp('Perl::LanguageServer', ['-e', 'Perl::LanguageServer::run']),
|
||||
|
||||
{
|
||||
name: 'phpactor',
|
||||
filetype: 'php',
|
||||
path: expand('~/bin/phpactor'),
|
||||
args: ['language-server'],
|
||||
initializationOptions: {
|
||||
'language_server_configuration.auto_config': false,
|
||||
},
|
||||
install: 'curl -Lo phpactor https://github.com/phpactor/phpactor/releases/latest/download/phpactor.phar && chmod u+x phpactor && mv phpactor ~/bin',
|
||||
},
|
||||
|
||||
{
|
||||
name: 'PowerShellEditorServices',
|
||||
filetype: 'ps1',
|
||||
|
|
Loading…
Reference in a new issue