paint-brush
Personalice Oh My Zsh con resaltado de sintaxis y sugerencias automáticaspor@soniasingla
31,990 lecturas
31,990 lecturas

Personalice Oh My Zsh con resaltado de sintaxis y sugerencias automáticas

por Sonia Singla1m2020/11/23
Read on Terminal Reader
Read this story w/o Javascript
tldt arrow
ES

Demasiado Largo; Para Leer

Personalice Oh My Zsh con resaltado de sintaxis y sugerencias automáticas. Cómo instalar rápidamente complementos para Oh-My-Zsh usando Curl:.curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh. Use Curl para crear un caparazón personalizado para OhMyZsh. Usando Curl, abre la terminal para reconfigurar los ajustes y ¡Voila!

Company Mentioned

Mention Thumbnail
featured image - Personalice Oh My Zsh con resaltado de sintaxis y sugerencias automáticas
Sonia Singla HackerNoon profile picture

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.

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 clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM /plugins/zsh-autosuggestions

Instale zsh-syntax-highlighting ejecutando:

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