setting up a new wsl vm

This commit is contained in:
Matthew Ryan Dillon 2023-08-10 21:16:10 -04:00
parent 779cc9e007
commit 58ac026ff2
2 changed files with 22 additions and 8 deletions

View file

@ -27,4 +27,16 @@ sudo port install \
wget \
zellij \
zsh
{{ else if eq .chezmoi.hostname "spleen" -}}
#!/bin/sh
sudo apt install \
ripgrep \
tmux \
tree \
wget \
-y
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -o /rustup.sh && chmod u+x /rustup.sh && /rustup.sh -y
git clone https://github.com/helix-editor/helix.git /helix
export PATH=$PATH:$HOME/.cargo/bin && cargo install --path helix-term && hx --grammar fetch && hx --grammar build
{{ end }}