Jan 01, 1970
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
Auto-Suggestions
y Syntax
Highlighting
en el oh-my-zsh
tema. sh -c " $(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh) "
NOTA:yZSH
ambos son diferentesOhMyZsh
Echemos un vistazo a cómo instalar complementos y configurar Zsh:
git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM /plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM /plugins/zsh-syntax-highlighting
Ahora abierto
.zshrc
archivo con su editor favorito: nano ~/.zshrc
Y simplemente agrega
zsh-autosuggestions
& zsh-syntax-highlighting
a plugins()
sección, hará la magia por ti: plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
Vuelva a abrir la terminal para reconfigurar los ajustes y ¡Voila! 🎉
Publicado anteriormente aquí.