mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
17 lines
240 B
Bash
Executable File
17 lines
240 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
git clone --depth=1 https://github.com/UniqueVision/plpgsql-lsp .
|
|
npm install
|
|
npm run build
|
|
|
|
cat <<EOF >plpgsql-lsp
|
|
#!/bin/sh
|
|
|
|
DIR=\$(cd \$(dirname \$0); pwd)
|
|
node \$DIR/server/out/server.js \$*
|
|
EOF
|
|
|
|
chmod +x plpgsql-lsp
|