Article original publié le : 26 juillet 2021 Mise à jour le : 10 décembre 2022 MAJ: Correction typo, code, structure .. Installation du shell zsh, framework oh-my-zsh, thème powerlevel9k, pluguns zsh-syntax-highlighting et zsh-autosuggestions, personnalisation du .zshrc Xubuntu 22.04 ✅ Xubuntu 20.04 ✅ L’automatisation avec Ansible du précédent article [Shell] Installation […]
Étiquette : zsh
[Shell] Installation et personnalisation de zsh sur XUbuntu 20.04
Article original Publié le : 24 juillet 2021 Mise a jour le : – I. Installation des composants Installer le paquet zsh
1 |
$ sudo apt install zsh |
Installer le projet oh-my-zsh
1 |
$ sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" |
Installation d’un nouveau thème
1 |
$ sudo apt install zsh-theme-powerlevel9k |
Changement de la coloration
1 |
$ sudo apt install zsh-syntax-highlighting |
Cloner ensuite le projet zsh-autosuggestions
1 |
$ git clone https://github.com/zsh-users/zsh-autosuggestions.git .zsh-autosuggestions |
II. Personnalisation […]