dotfiles/modules/50-devtools.sh
Martin Büchler 15b50be80b chore: update agent safety rules, devtools, and Waybar config symlink
- Clarify agent safety in AGENTS.md
- Update devtools package name
- Update Waybar config symlink for device profile

🤖 Generated with opencode
Co-Authored-By: opencode <noreply@opencode.ai>
2025-08-08 11:19:12 +02:00

23 lines
323 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
)
paru -S --needed --noconfirm "${DEVTOOLS_PACKAGES[@]}"
echo "Development tools installed."