mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-17 12:00:29 +01:00
11 lines
290 B
Bash
Executable File
11 lines
290 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
[ -d ../servers/clojure-lsp ] && rm -rf ../servers/clojure-lsp
|
|
mkdir ../servers/clojure-lsp
|
|
cd ../servers/clojure-lsp
|
|
curl -L -o clojure-lsp https://github.com/snoe/clojure-lsp/releases/download/release-20191202T142318/clojure-lsp
|
|
chmod +x clojure-lsp
|