Compare commits
2 commits
7d64ff07b0
...
c796b3732d
Author | SHA1 | Date | |
---|---|---|---|
c796b3732d | |||
c88775b450 |
1 changed files with 16 additions and 11 deletions
|
@ -20,6 +20,14 @@ const lspServers = [
|
||||||
install: 'npm install -g dockerfile-language-server-nodejs',
|
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',
|
name: 'lua-language-server',
|
||||||
filetype: 'lua',
|
filetype: 'lua',
|
||||||
|
@ -46,17 +54,6 @@ const lspServers = [
|
||||||
|
|
||||||
perl.Lsp('Perl::LanguageServer', ['-e', 'Perl::LanguageServer::run']),
|
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',
|
name: 'PowerShellEditorServices',
|
||||||
filetype: 'ps1',
|
filetype: 'ps1',
|
||||||
|
@ -84,6 +81,14 @@ const lspServers = [
|
||||||
install: 'pipx install python-lsp-server[all]',
|
install: 'pipx install python-lsp-server[all]',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
name: 'rust-analyzer',
|
||||||
|
filetype: 'rust',
|
||||||
|
path: expand('~/.local/share/cargo/bin/rust-analyzer'),
|
||||||
|
args: [],
|
||||||
|
install: 'rustup component add rust-analyzer',
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
name: 'solargraph',
|
name: 'solargraph',
|
||||||
filetype: 'ruby',
|
filetype: 'ruby',
|
||||||
|
|
Loading…
Reference in a new issue