chore: update zshrc and install script with improvements

This commit is contained in:
2025-05-28 21:13:31 +02:00
parent cc839e05c2
commit cd03e5d30b
3 changed files with 17 additions and 9 deletions

19
install Normal file → Executable file
View File

@ -1,16 +1,23 @@
#!/usr/bin/env bash
apt update
set -e
echo "[+] Updating System Packages..."
apt update -qq
echo "[+] Upgrading System Packages..."
apt upgrade -yqq
echo "[+] Installing Dependencies..."
apt install -yqq \
git \
zsh \
curl \
exa \
direnv \
bat \
ripgrep
btop
curl https://sh.rustup.rs -sSf | sh
curl -sfL https://direnv.net/install.sh | bash
echo "[+] Installing Oh My Zsh..."
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
cargo install exa
cp .zshenv.template .zshenv