31 lines
526 B
Bash
31 lines
526 B
Bash
#!/bin/bash
|
|
|
|
{{ if .root }}
|
|
|
|
{{ if eq .chezmoi.osRelease.id "arch" }}
|
|
sudo pacman -Syy --needed \
|
|
feh \
|
|
git \
|
|
zsh \
|
|
;
|
|
{{ end }}
|
|
|
|
cargo install \
|
|
autojump \
|
|
bat \
|
|
cargo-edit \
|
|
cargo-expand \
|
|
cargo-tree \
|
|
cargo-update \
|
|
cargo-watch \
|
|
fd-find \
|
|
hexyl \
|
|
just \
|
|
ripgrep \
|
|
tokei \
|
|
{{ if .root }} topgrade {{ end }} \
|
|
;
|
|
|
|
{{ end }}
|
|
|
|
# vim: set ft=bash :
|