oh-my-zsh替代品prezto

每次启动terminal都很慢,实在无法忍受oh-my-zsh的龟速,发现一个替代品prezto,建议使用,oh-my-zsh 有的功能他都有了,最重要的是启动速度快!

废话不多说,prezto项目地址:https://github.com/sorin-ionescu/prezto

安装:

1、启动zsh

zsh


2、克隆项目到本地

git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto"


3、创建Zsh配置文件

setopt EXTENDED_GLOB
 for rcfile in "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/^README.md(.N); do
   ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile:t}"
 done


4、设置 Zsh 为默认shell

chsh -s /bin/zsh


5、新开窗口体验~~~


关于更新
cd  ~/.zprezto
git pull && git submodule update --init --recursive

oh-my-zsh的 z 命令替代品 fasd
brew install fasd

vim ~/.zshrc
eval "$(fasd --init auto)"

vim  ~/.zpreztorc
zstyle ':prezto:load' pmodule \
    'environment' \
    'terminal' \
    'editor' \
    'history' \
    'directory' \
    'spectrum' \
    'utility' \
    'completion' \
    'history' \
    'history-substring-search' \
    'prompt'