资料

Install


# 安装oh my zsh sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"

Plugins


# 高亮插件 zsh-syntax-highlighting git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting # 自动补全 zsh-autosuggestions git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions # 配置插件 vim ~/.zshrc # 找到 plugins = () 填入 plugins=(其他的插件 zsh-syntax-highlighting zsh-autosuggestions) # 使生效 . ~/.zshrc
Autojump plugin
git clone https://github.com/joelthelion/autojump.git -b wting_default_python3 cd autojump python3 ./install.py vim ~/.zshrc plugins=(autojump) # 最底部写入 [[ -s /home/busyhe/.autojump/etc/profile.d/autojump.sh ]] && source /home/busyhe/.autojump/etc/profile.d/autojump.sh autoload -U compinit && compinit -u # 生效之 . ~/.zshrc
badge