Lean
This commit is contained in:
parent
7f53f76a19
commit
5055d02849
2 changed files with 9 additions and 0 deletions
|
@ -26,3 +26,8 @@ if [ -d "$HOME/.local/bin" ] ; then
|
||||||
PATH="$HOME/.local/bin:$PATH"
|
PATH="$HOME/.local/bin:$PATH"
|
||||||
fi
|
fi
|
||||||
. "$HOME/.cargo/env"
|
. "$HOME/.cargo/env"
|
||||||
|
|
||||||
|
# set path so it includes elan if it exists
|
||||||
|
if [ -d "$HOME/.elan/bin" ]; then
|
||||||
|
PATH="$HOME/.elan/bin:$PATH"
|
||||||
|
fi
|
||||||
|
|
|
@ -20,6 +20,10 @@ cd tla-bin
|
||||||
./download_or_update_tla.sh
|
./download_or_update_tla.sh
|
||||||
sudo ./install.sh /usr/local
|
sudo ./install.sh /usr/local
|
||||||
|
|
||||||
|
# Install rust
|
||||||
curl https://sh.rustup.rs -sSf | sh
|
curl https://sh.rustup.rs -sSf | sh
|
||||||
|
|
||||||
gem install tmuxinator
|
gem install tmuxinator
|
||||||
|
|
||||||
|
# Lean version manager
|
||||||
|
curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf | sh
|
||||||
|
|
Loading…
Reference in a new issue