13 lines
332 B
Bash
Executable file
13 lines
332 B
Bash
Executable file
#!/bin/sh
|
|
|
|
curl -L -o /tmp/coursier https://git.io/coursier
|
|
chmod +x /tmp/coursier
|
|
/tmp/coursier bootstrap \
|
|
--java-opt -Xss4m \
|
|
--java-opt -Xms100m \
|
|
--java-opt -Dmetals.client=LanguageClient-neovim \
|
|
org.scalameta:metals_2.12:0.7.0 \
|
|
-r bintray:scalacenter/releases \
|
|
-r sonatype:snapshots \
|
|
-o ~/bin/metals-vim -f
|
|
|