Skip to content
Quang Tran edited this page Oct 6, 2023 · 10 revisions

zsh

Install zsh

openSUSE

zypper install zsh

Install the zsh plugin manager Oh My Zsh

wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh

sh install.sh

zsh plugins

The installation of a zsh plugin with ohmyzsh is done in two steps:

  1. Clone the plugin into the plugin folder $ZSH_CUSTOM (Default is ~/.oh-my-zsh/custom/)
  2. Add the plugin to the list of plugins to .zshrc

Flatpak completion for Zsh

GitHub Project Site

cd $ZSH_CUSTOM/plugins
git clone https://github.com/bilelmoussaoui/flatpak-zsh-completion flatpak

zsh-autocomplete

cd $ZSH_CUSTOM/plugins
git clone https://github.com/marlonrichert/zsh-autocomplete
Clone this wiki locally