Compare commits
No commits in common. "c796b3732d7a2463f4182429fc31f395c2f84abf" and "7d64ff07b0aa622cdd7348bf4ce387b903dd708e" have entirely different histories.
c796b3732d
...
7d64ff07b0
1 changed files with 11 additions and 16 deletions
|
@ -20,14 +20,6 @@ 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',
|
||||||
|
@ -54,6 +46,17 @@ 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',
|
||||||
|
@ -81,14 +84,6 @@ 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