mirror of
https://github.com/acedanger/shell.git
synced 2025-12-06 01:10:12 -08:00
24 lines
745 B
Plaintext
24 lines
745 B
Plaintext
// Essential packages for shell setup
|
|
// Cross-platform package list with fallbacks handled in setup scripts
|
|
|
|
// Core tools
|
|
git
|
|
python3
|
|
wget
|
|
curl
|
|
|
|
// Enhanced shell tools
|
|
bat // Modern cat alternative (available as 'batcat' on Ubuntu/Debian)
|
|
cowsay // Fun ASCII art
|
|
lolcat // Colorful text output
|
|
fzf // Fuzzy finder
|
|
zsh // Z shell
|
|
nala // Modern apt frontend
|
|
fd-find // Modern find alternative (available as 'fd' or 'fdfind')
|
|
eza // Modern ls alternative
|
|
|
|
// Note: lazygit, lazydocker, and fabric require special installation (GitHub releases/scripts)
|
|
// These are handled separately in the setup script
|
|
// lazygit
|
|
// lazydocker
|
|
fabric |