dotfiles/home/run_once_install-packages.sh.tmpl
Matthew Dillon a5ff4922ed ironing out some hx install
still not perfect but itll do for the moment
2023-08-10 22:13:41 -04:00

44 lines
915 B
Cheetah

{{ if eq .chezmoi.hostname "devterm" -}}
#!/bin/sh
sudo apt install \
brightnessctl \
git \
libncurses-dev \
libssl-dev \
lynx \
ripgrep \
tmux \
tree \
wget \
zsh \
-y
{{ else if eq .chezmoi.os "darwin" -}}
#!/bin/sh
sudo port install \
colima \
curl \
docker \
docker-compose \
git \
helix \
ripgrep \
tmux \
tree \
wget \
zellij \
zsh
{{ 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 /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 }}