Skip to content

Instantly share code, notes, and snippets.

@angel190884
Last active August 19, 2021 14:30
Show Gist options
  • Save angel190884/cdc3e3995ff1f4d2b159c727d0ba77f2 to your computer and use it in GitHub Desktop.
Save angel190884/cdc3e3995ff1f4d2b159c727d0ba77f2 to your computer and use it in GitHub Desktop.
habilitar autoclompletado zsh

🤩 Autocompletar mientras escribe un comando

Git Clone el zsh-autocompletecomplemento en la carpeta del complemento OhMyZsh.

$ sudo git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

Una vez hecho esto, agregue el complemento en la ~/.zshrc lista de complementos del archivo.

plugins=(
  ...
  zsh-autosuggestions
)

🎉 Resaltado de sintaxis Zsh

Git Clone el zsh-syntax-highlightingcomplemento en la carpeta del complemento OhMyZsh.

$ sudo git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting

Y una vez más agréguelo en la lista de complementos del .zshrcarchivo.

plugins=(
  ... 
  zsh-syntax-highlighting
)

Nota: Para reflejar cada cambio que realice, hágalo source ~/.zshrcen la terminal.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment