mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
11 lines
218 B
Bash
Executable File
11 lines
218 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
version="1.3.7"
|
|
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 .
|