#!/usr/bin/env bash # Install development tools and utilities DEVTOOLS_PACKAGES=( git python nodejs npm docker jq ripgrep fd btop htop lazygit visual-studio-code-bin opencode ) paru -S --needed --noconfirm "${DEVTOOLS_PACKAGES[@]}" echo "Development tools installed."