Update bashrc and setup.sh

- Remove OpenClaw completion
- Add hostname to prompt
- Add Rust installation to setup.sh
This commit is contained in:
1jamesthompson1
2026-03-23 09:57:36 +13:00
parent a0125af454
commit a7769087a9
2 changed files with 8 additions and 5 deletions

View File

@@ -23,6 +23,12 @@ echo ">>> Installing bash, kitty, and vim..."
sudo apt update
sudo apt install -y bash kitty vim-gtk3 git curl
# Install Rust
echo ">>> Installing Rust..."
if ! command -v rustc &> /dev/null; then
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
fi
# 2. Clone your dotfiles (bare repo style)
if [ ! -d "$HOME/.dotfiles" ]; then
echo ">>> Cloning dotfiles repo..."