oh-my-zsh + zsh-autosuggestions
El terminal es donde paso el día: invierte en él.
- oh-my-zsh — framework para zsh: temas, plugins y atajos con cero esfuerzo. Plugins
git,docker,macos,bun. - zsh-autosuggestions — sugiere el comando según tu historial mientras escribes; aceptas con
→. Escribes la mitad y ejecutas lo de siempre.
Instalación mínima
# oh-my-zsh
sh -c "$(curl -fsSL https://install.ohmyz.sh)"
# zsh-autosuggestions (plugin custom) + activarlo en ~/.zshrc
git clone https://github.com/zsh-users/zsh-autosuggestions \
${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
# plugins=(git docker macos bun zsh-autosuggestions)
Notas del ponente
Demo (30s): abre una terminal limpia, escribe git y deja que aparezca la sugerencia fantasma; acéptala con la flecha. Escribe cd ~/Dr y enseña el autocompletado.
Idea a transmitir: no memorizas comandos, los reconoces. El shell recuerda por ti. Vale también para bash (fzf, ble.sh) y para fish sin configurar nada.