mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
11 lines
228 B
Bash
Executable File
11 lines
228 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
version="0.5.2"
|
|
curl -L -o server.zip "https://github.com/fwcd/kotlin-language-server/releases/download/$version/server.zip"
|
|
unzip server.zip
|
|
rm server.zip
|
|
|
|
ln -s server/bin/kotlin-language-server .
|