dotfiles/run_once_01_install_packages.sh.tmpl

32 lines
526 B
Cheetah
Raw Normal View History

2020-11-23 05:35:09 +00:00
#!/bin/bash
2020-11-23 18:10:19 +00:00
{{ if .root }}
{{ if eq .chezmoi.osRelease.id "arch" }}
sudo pacman -Syy --needed \
feh \
git \
zsh \
2020-11-23 18:15:44 +00:00
;
2020-11-23 18:10:19 +00:00
{{ end }}
2020-11-23 18:15:44 +00:00
cargo install \
autojump \
bat \
cargo-edit \
cargo-expand \
cargo-tree \
cargo-update \
cargo-watch \
fd-find \
hexyl \
just \
ripgrep \
tokei \
{{ if .root }} topgrade {{ end }} \
;
2020-11-23 05:35:09 +00:00
{{ end }}
# vim: set ft=bash :