Includes modular setup, device profile support, and documentation. 🤖 Generated with [opencode](https://opencode.ai) Co-Authored-By: opencode <noreply@opencode.ai>
23 lines
327 B
Bash
Executable File
23 lines
327 B
Bash
Executable File
#!/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-bin
|
|
)
|
|
|
|
paru -S --needed --noconfirm "${DEVTOOLS_PACKAGES[@]}"
|
|
|
|
echo "Development tools installed."
|