install: also install ripgrep and sbcl
This commit is contained in:
9
install
9
install
@@ -96,19 +96,22 @@ fi
|
|||||||
git config --global user.email "paul@blacksun.org.uk"
|
git config --global user.email "paul@blacksun.org.uk"
|
||||||
git config --global user.name "Paul Walker"
|
git config --global user.name "Paul Walker"
|
||||||
|
|
||||||
|
if [ ! -d "$HOME/.rbenv" ] ; then
|
||||||
git clone https://github.com/rbenv/rbenv.git "$HOME/.rbenv"
|
git clone https://github.com/rbenv/rbenv.git "$HOME/.rbenv"
|
||||||
git clone https://github.com/rbenv/ruby-build.git "$HOME/.rbenv/plugins/ruby-build"
|
git clone https://github.com/rbenv/ruby-build.git "$HOME/.rbenv/plugins/ruby-build"
|
||||||
|
fi
|
||||||
|
|
||||||
if [ ! -d "$HOME/.asdf" ] ; then
|
if [ ! -d "$HOME/.asdf" ] ; then
|
||||||
git clone https://github.com/asdf-vm/asdf.git "$HOME/.asdf"
|
git clone https://github.com/asdf-vm/asdf.git "$HOME/.asdf"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Add and install these ones.
|
# Add and install these ones.
|
||||||
for plugin in golang erlang elixir clojure ; do
|
for plugin in golang erlang elixir clojure ripgrep sbcl ; do
|
||||||
asdf plugin add $plugin
|
asdf plugin add $plugin && \
|
||||||
asdf install $plugin latest
|
asdf install $plugin latest && \
|
||||||
asdf global $plugin latest
|
asdf global $plugin latest
|
||||||
done
|
done
|
||||||
|
|
||||||
# Just add these, for now.
|
# Just add these, for now.
|
||||||
asdf plugin add python
|
asdf plugin add python
|
||||||
asdf plugin add gohugo
|
asdf plugin add gohugo
|
||||||
|
|||||||
Reference in New Issue
Block a user