mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
11 lines
192 B
Bash
Executable File
11 lines
192 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
git clone --depth=1 https://github.com/vlang/vls .
|
|
|
|
echo 'Compiling vlang/vls...'
|
|
v -prod cmd/vls
|
|
mv cmd/vls/vls vlang-vls
|
|
rm -rf instructions.png cmd jsonrpc lsp vls tests
|