配置 Oh My Zsh 和 Spaceship theme
Pre-requisite
Install zsh (v5.2 or recent).
- By default, it’s already included in macOS 10.15 Catalina as default shell.
Install Oh My Zsh.
1
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
Install Powerline Fonts and switch font to Fira Mono for Powerline.
1
2
3git clone https://github.com/powerline/fonts.git --depth=1
cd fonts
./install.sh
Instructions
Install Spaceship ZSH via Oh My Zsh.
1
2
3git 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.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
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
Activate the plugin in ~/.zshrc:
1
plugins=(... zsh-syntax-highlighting)
Auto Jump
Install via brew.
1
brew install autojump
Add the following line to ~/.zshrc:
1
[ -f /usr/local/etc/profile.d/autojump.sh ] && . /usr/local/etc/profile.d/autojump.sh
git-open
Clone the repository.
1
git clone https://github.com/paulirish/git-open.git $ZSH_CUSTOM/plugins/git-open
Activate the plugin in ~/.zshrc:
1
plugins=(... git-open)