16 lines
319 B
Bash
16 lines
319 B
Bash
#!/usr/bin/env bash
|
|
|
|
apt update
|
|
apt upgrade -yqq
|
|
apt install -yqq \
|
|
git \
|
|
zsh \
|
|
curl \
|
|
bat \
|
|
ripgrep
|
|
|
|
curl https://sh.rustup.rs -sSf | sh
|
|
curl -sfL https://direnv.net/install.sh | bash
|
|
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
|
|
|
cargo install exa |