dotfiles/run_once_01_install_packages.sh.tmpl
2020-11-23 12:15:44 -06:00

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 :