mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
10 lines
200 B
Bash
Executable File
10 lines
200 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
curl -L -o server.zip "https://github.com/fwcd/kotlin-language-server/releases/latest/download/server.zip"
|
|
unzip server.zip
|
|
rm server.zip
|
|
|
|
ln -s server/bin/kotlin-language-server .
|