Como desarrolladores, pasamos mucho tiempo trabajando en la terminal y tener una carcasa personalizada hace que el entorno de trabajo sea perfecto, disminuye la frustración y también, aumenta la productividad. En este blog, discutiremos cómo instalar complementos rápidamente y en el tema. Auto-Suggestions Syntax Highlighting oh-my-zsh Instale Oh-My-Zsh usando Curl: sh -c " " $(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh) NOTA: ZSH y OhMyZsh ambos son diferentes Echemos un vistazo a cómo instalar complementos y configurar Zsh: Instale zsh-autosuggestions ejecutando: git https://github.com/zsh-users/zsh-autosuggestions.git /plugins/zsh-autosuggestions clone $ZSH_CUSTOM Instale zsh-syntax-highlighting ejecutando: git https://github.com/zsh-users/zsh-syntax-highlighting.git /plugins/zsh-syntax-highlighting clone $ZSH_CUSTOM Ahora abierto archivo con su editor favorito: .zshrc nano ~/.zshrc Y simplemente agrega & a sección, hará la magia por ti: zsh-autosuggestions zsh-syntax-highlighting plugins() plugins=(git zsh-autosuggestions zsh-syntax-highlighting) Vuelva a abrir la terminal para reconfigurar los ajustes y ¡Voila! 🎉 Publicado anteriormente aquí.