dotfiles/modules/50-devtools.sh
Martin Büchler 7d13e6ff1c chore: initial commit of all dotfiles, configs, and setup scripts
Includes modular setup, device profile support, and documentation.

🤖 Generated with [opencode](https://opencode.ai)

Co-Authored-By: opencode <noreply@opencode.ai>
2025-08-07 23:05:28 +02:00

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."