配置 Oh My Zsh 和 Spaceship theme

Pre-requisite

  1. Install zsh (v5.2 or recent).

    • By default, it’s already included in macOS 10.15 Catalina as default shell.
  2. Install Oh My Zsh.

    1
    sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
  3. Install Powerline Fonts and switch font to Fira Mono for Powerline.

    1
    2
    3
    git clone https://github.com/powerline/fonts.git --depth=1
    cd fonts
    ./install.sh

Instructions

  1. Install Spaceship ZSH via Oh My Zsh.

    1
    2
    3
    git clone https://github.com/denysdovhan/spaceship-prompt.git "$ZSH_CUSTOM/themes/spaceship-prompt"
    ln -s "$ZSH_CUSTOM/themes/spaceship-prompt/spaceship.zsh-theme" "$ZSH_CUSTOM/themes/spaceship.zsh-theme"
    # Set ZSH_THEME="spaceship" in your .zshrc.
  2. Open a new tab in your Terminal app to take effect.

Plugins

You must open a new tab or restart your terminal to take effect.

Zsh Syntax Highlighting

  1. Clone the repository.

    1
    git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
  2. Activate the plugin in ~/.zshrc:

    1
    plugins=(... zsh-syntax-highlighting)

Auto Jump

  1. Install via brew.

    1
    brew install autojump
  2. Add the following line to ~/.zshrc:

    1
    [ -f /usr/local/etc/profile.d/autojump.sh ] && . /usr/local/etc/profile.d/autojump.sh

git-open

  1. Clone the repository.

    1
    git clone https://github.com/paulirish/git-open.git $ZSH_CUSTOM/plugins/git-open
  2. Activate the plugin in ~/.zshrc:

    1
    plugins=(... git-open)