dotfiles/script/installpackages

27 lines
557 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
#
# Install packages for a new Arch or Manjaro installation. Requires sudo
2021-04-02 19:52:43 +00:00
if [[ $EUID > 0 ]]; then
echo "requires administrative privileges"
exit 1
fi
2021-04-02 19:56:36 +00:00
pacman -S --needed --noconfirm base-devel \
git \
exa \
fzf \
tmux \
2021-04-02 04:07:11 +00:00
ripgrep \
bat \
2021-04-02 04:28:00 +00:00
docker \
docker-compose \
ttf-ubuntu-font-family # Ubuntu Mono font for Alacritty
# https://rustup.rs/
2021-04-02 20:02:54 +00:00
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
2021-04-02 20:04:52 +00:00
source $HOME/.cargo/env
# https://github.com/dandavison/delta#installation
cargo install git-delta