mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
16 lines
275 B
Bash
Executable File
16 lines
275 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
git clone "https://github.com/castwide/solargraph" .
|
|
bundle install --path vendor/bundle
|
|
|
|
cat <<EOF >solargraph
|
|
#!/usr/bin/env bash
|
|
|
|
DIR=\$(cd \$(dirname \$0); pwd)
|
|
cd \$DIR && bundle exec ruby \$DIR/bin/solargraph stdio
|
|
EOF
|
|
|
|
chmod +x solargraph
|