Compare commits

..

No commits in common. "8906d076fd2b3fa12f23d6079a88f431413fe3ca" and "19007ed008b99d0dad54d8b097a4a7dad8b99cee" have entirely different histories.

View file

@ -7,25 +7,15 @@ set -euo pipefail
# Wrapping everything in a function to avoid partial download problems # Wrapping everything in a function to avoid partial download problems
main() { main() {
echo "set tabsize 4" > "$HOME/.config/nano/nanorc"
sudo apt-get update sudo apt-get update
sudo apt-get install -y \ sudo apt-get install -y \
curl \ curl \
git \
kate \ kate \
lua5.4 \ lua5.4 \
shellcheck \ shellcheck \
pv pv
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain stable curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
cargo install \
division_of_one \
pulldown-cmark \
rusty_ulid
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "All good" echo "All good"
} }