mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
61 lines
1.2 KiB
Bash
Executable File
61 lines
1.2 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
os="$(uname -s | tr "[:upper:]" "[:lower:]")"
|
|
arch="$(uname -m)"
|
|
|
|
case $os in
|
|
linux)
|
|
if [ "$arch" = "x86_64" ]; then
|
|
platform="linux-x64"
|
|
elif [ "$arch" = "aarch64" ] || [ "$arch" = "arm64" ]; then
|
|
platform="linux-arm64"
|
|
else
|
|
echo "unknown architecture: $arch"
|
|
exit 1
|
|
fi
|
|
;;
|
|
darwin)
|
|
if [ "$arch" = "x86_64" ]; then
|
|
platform="darwin-x64"
|
|
elif [ "$arch" = "aarch64" ] || [ "$arch" = "arm64" ]; then
|
|
platform="darwin-arm64"
|
|
else
|
|
echo "unknown architecture: $arch"
|
|
exit 1
|
|
fi
|
|
;;
|
|
mingw64_nt*)
|
|
if [ "$arch" = "x86_64" ]; then
|
|
platform="win32-x64"
|
|
else
|
|
echo "unknown architecture: $arch"
|
|
exit 1
|
|
fi
|
|
;;
|
|
*)
|
|
echo "unknow platform: $os"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
version="v3.0.0"
|
|
url="https://github.com/sumneko/vscode-lua/releases/download/$version/vscode-lua-$version-$platform.vsix"
|
|
asset="vscode-lua.vsix"
|
|
|
|
curl -L "$url" -o "$asset"
|
|
unzip "$asset"
|
|
rm "$asset"
|
|
|
|
chmod +x extension/server/bin/lua-language-server
|
|
|
|
cat <<EOF >sumneko-lua-language-server
|
|
#!/bin/sh
|
|
|
|
DIR=\$(cd \$(dirname \$0); pwd)/extension/server
|
|
\$DIR/bin/lua-language-server -E -e LANG=en \$DIR/main.lua \$*
|
|
EOF
|
|
|
|
chmod +x sumneko-lua-language-server
|