oh my-zsh plugins code example
Example 1: oh my zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
Example 2: zsh plugins
git clone https://github.com/zsh-users/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git
To be fair zsh-users
has proper installation instructions depending on OS for each of those plugins...
https://github.com/zsh-users/zsh-syntax-highlighting - install.md
https://github.com/zsh-users/zsh-completions - readme.md
https://github.com/zsh-users/zsh-autosuggestions - install.md
https://github.com/zsh-users/zsh-history-substring-search - readme.md
Example 3: oh my zsh git
sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"