Diferencia entre revisiones de «Instalación Oh My Zsh»
Ir a la navegación
Ir a la búsqueda
(No se muestran 4 ediciones intermedias del mismo usuario) | |||
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 | ||
Línea 17: | Línea 17: | ||
Nuevo archivo de configuración de Zsh: | Nuevo archivo de configuración de Zsh: | ||
cp ~/.zshrc ~/.zshrc.bk | |||
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc | cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc | ||
Línea 53: | Línea 53: | ||
chsh -s /bin/zsh | chsh -s /bin/zsh | ||
Ya | Ya podrán usar la terminal de Zsh con Oh My Zsh | ||
== Fedora == | |||
=== Fedora 38 Workstation === | |||
sudo dnf install zsh util-linux-user | |||
curl -L https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh | sh | |||
Guarda el archivo (control + o) y salir del editor de texto (control + x). | |||
Volver a teclear en la terminal: | |||
chsh -s /usr/bin/zsh | |||
Cerrar la terminal y volver a entrar. | |||
Ya podrán usar la terminal de Zsh con Oh My Zsh |
Revisión actual - 10:19 7 ago 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 podrán usar la terminal de Zsh con Oh My Zsh
Fedora
Fedora 38 Workstation
sudo dnf install zsh util-linux-user curl -L https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh | sh
Guarda el archivo (control + o) y salir del editor de texto (control + x). Volver a teclear en la terminal:
chsh -s /usr/bin/zsh
Cerrar la terminal y volver a entrar. Ya podrán usar la terminal de Zsh con Oh My Zsh