From a5ff4922ed53722ac93dd0a9175278f363369346 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 10 Aug 2023 22:13:41 -0400 Subject: [PATCH] ironing out some hx install still not perfect but itll do for the moment --- home/run_once_install-packages.sh.tmpl | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/home/run_once_install-packages.sh.tmpl b/home/run_once_install-packages.sh.tmpl index 59a987d..7742318 100644 --- a/home/run_once_install-packages.sh.tmpl +++ b/home/run_once_install-packages.sh.tmpl @@ -27,16 +27,18 @@ sudo port install \ wget \ zellij \ zsh -{{ else if eq .chezmoi.hostname "spleen" -}} +{{ else if eq .chezmoi.hostname "DESKTOP-R0KQMF4" -}} #!/bin/sh +sudo apt update sudo apt install \ + clang \ 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 +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 --branch 23.05 /tmp/helix +export PATH=$PATH:$HOME/.cargo/bin && cd /tmp/helix && cargo install --path helix-term --locked && hx --grammar fetch && hx --grammar build {{ end }}