🛠 Guía rápida: Instalar y usar Oh My Zsh 1️⃣ Instalar Zsh (si no lo tienes) En Debian/Ubuntu/MX Linux: bash sudo apt update && sudo apt install -y zsh git curl Verifica: bash zsh --version 2️⃣ Cambiar tu shell por defecto a Zsh bash chsh -s $(which zsh) Cierra y abre la terminal para que el cambio surta efecto. 3️⃣ Instalar Oh My Zsh bash sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" Esto creará ~/.zshrc con configuración inicial y activará un tema por defecto. 4️⃣ Activar plugins Edita ~/.zshrc: bash nano ~/.zshrc Busca la línea: bash plugins=(git) y añade más: bash plugins=(git zsh-autosuggestions zsh-syntax-highlighting) Guarda y recarga: bash source ~/.zshrc 5️⃣ Cambiar el tema En ~/.zshrc: bash ZSH_THEME="agnoster" O instala Powerlevel10k para un prompt más avanzado: bash git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k y en ~/.zshrc: bash ZSH_THEME="powerlevel10k/powerlevel10k" 6️⃣ Actualizar Oh My Zsh bash omz update 💡 Tip: Si vienes de Bash, copia tus alias y funciones de ~/.bashrc a ~/.zshrc para no perderlos.
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter