Diferencia entre revisiones de «Instalación Oh My Zsh»
Ir a la navegación
Ir a la búsqueda
([feat] Add information Instalación Oh My Zsh) |
|||
Línea 1: | Línea 1: | ||
= GNU/Linux = | = GNU/Linux = | ||
== Ubuntu == | == Debian/Ubuntu == | ||
=== Ubuntu 22.04 LTS === | === Debian Buster 10 / Ubuntu 22.04 LTS === | ||
sudo apt update | sudo apt update |
Revisión del 17:43 18 may 2023
GNU/Linux
Debian/Ubuntu
Debian Buster 10 / Ubuntu 22.04 LTS
sudo apt update sudo apt upgrade sudo apt install zsh sudo apt-get install powerline fonts-powerline sudo apt autoclean && sudo apt clean
Clonar el repositorio Oh My Zsh:
cd ~/repositoriosGit git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
Nuevo archivo de configuración de Zsh:
cp ~/.zshrc ~/.zshrc.bk cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
Instalar PowerLevel9k:
git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k
Agregar el tema en la terminal:
nano ~/.zshrc
Al final del archivo se agrega lo siguiente:
ZSH_THEME="powerlevel9k/powerlevel9k"POWERLEVEL9K_DISABLE_RPROMPT=true POWERLEVEL9K_PROMPT_ON_NEWLINE=true POWERLEVEL9K_MULTILINE_LAST_PROMPT_PREFIX="▶" POWERLEVEL9K_MULTILINE_FIRST_PROMPT_PREFIX=""
Cambios en la terminal:
chsh -s /bin/zsh
Agregar ZSH Syntax Highlighting:
cd ~/repositoriosGit git clone https://github.com/zsh-users/zsh-syntax-highlighting.git "$HOME/.zsh-syntax-highlighting" --depth 1 echo "source $HOME/.zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> "$HOME/.zshrc"
Agregar el ZSH Syntax Highlighting en la terminal:
echo "source $HOME/.zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> "$HOME/.zshrc"
Cambios en la terminal:
chsh -s /bin/zsh
Ya podran usar la terminal de Zsh con Oh My Zsh