ironing out some hx install

still not perfect but itll do for the moment
This commit is contained in:
Matthew Ryan Dillon 2023-08-10 22:13:41 -04:00
parent 58ac026ff2
commit a5ff4922ed

View file

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