oh my zsh

/Users/user/.oh-my-zsh/plugins oh-my-zsh 官方插件目录
/Users/user/.oh-my-zsh/custom/plugins oh-my-zsh 第三方插件目录

安装

  1. oh my zsh可以通过curl来安装
    sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
    我比较习惯用默认的主题

autojump

  1. 下载autojump,在终端执行下面命令,前提是安装了brew
    brew install autojump
  2. 下载完成后,打开. zshrc配置文件
    open ~/. zshrc
  3. 翻到最后找到plugins为开头的这一行,如果没有则添加这一行plugins=(git autojump)
    .zshrc.png
  4. 使文件生效
    source ~/.zshrc
  5. 退出终端,并重新激动即可

用法:

  • 假设你现在需要进入用户目录下的Music文件夹,可以使用 autojump Music 或者j Music即可进入 Music 文件夹,但前提是要用cd Music进入 Music 文件夹一次,否则autojump Music或者 j Music是无法生效的。
  • 查看当前autojump记录的目录和对应权重
    j -s

zsh语法高亮

  1. 下载
    git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
  2. 下载完成后,打开. zshrc配置文件
    open ~/. zshrc
  3. 找到plugins,将zsh-syntax-highlighting添加到最后,官方推荐
    zsh-syntax-highlighting.png
  4. 使文件生效
    source ~/.zshrc
  5. 退出终端,并重新激动即可


    zsh-syntax-highlighting.gif

自动补齐插件

  1. 官网下载
  2. 打开插件目录
    cd ~/.oh-my-zsh/plugins
  3. 创建个新文件夹,方便管理
    mkdir incr
  4. 将下载下来的插件复制到新建的目录中(我的是默认下载到Downloads文件夹里)
    cp ~/Downloads/incr-0.2.zsh ~/.oh-my-zsh/plugins/incr/
  5. 赋予该文件777权限
    chmod 777 ~/.oh-my-zsh/plugins/incr/incr-0.2.zsh
  6. 打开. zshrc配置文件
    open ~/. zshrc
  7. 添加一行
    source ~/.oh-my-zsh/plugins/incr/incr-0.2.zsh
  8. 使文件生效
    source ~/.zshrc
  9. 退出终端,并重新激动即可


    incr.gif

你可能感兴趣的:(oh my zsh)