Skip to content
Willis Wang edited this page May 27, 2020 · 6 revisions

Zsh

Plugins

Autosuggestions:

git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

Syntax Highlighting:

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting

Base16 Colors

To install:

git clone https://github.com/chriskempson/base16-shell.git ~/.config/base16-shell

If you haven't stowed the .zshrc or don't want to, add the following to ~/.bashrc or ~/.zshrc:

# Base16 Shell
BASE16_SHELL="$HOME/.config/base16-shell/"
[ -n "$PS1" ] && \
    [ -s "$BASE16_SHELL/profile_helper.sh" ] && \
        eval "$("$BASE16_SHELL/profile_helper.sh")"

Use base16_<COLOR_SCHEME> to select color schemes. I personally use base16_tomorrow_night.

Clone this wiki locally