zsh使用

  1. 安装 zsh
    • Mac 自带
    • Ubuntu
      sudo apt-get install zsh
    • sudo chsh -s $(which zsh)设置zsh为默认shell
    • 注销后再进入终端可以看到效果
  2. 安装 oh-my-zsh
    自动安装
    wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
    
    手动安装:
    git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
    
  3. 主题和别名
    • 主题在 ~/.oh-my-zsh/themes下
    • 主题文件中的 PROMPT 改成如下
      PROMPT='%{$fg_bold[red]%}➜ %{$fg_bold[green]%}%p%{$fg[cyan]%}%d %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%}% %{$reset_color%}>'
      样式
    • 别名
      alias zshconfig=”vim ~/.zshrc”
      alias cls=’clear’
      alias ll=’ls -l’
      alias la=’ls -a’
      alias vi=’vim’
      alias grep=”grep –color=auto “ # 关键字加颜色
      alias -s html=vi # 终端输入 yy.html 自动 vim 打开,以下一样
      alias -s py=vi
      alias -s js=vi
      alias -s txt=vi
      alias -s gz=’tar -xzvf’ # 终端输入 yy.gz 自动解压,以下一样
      alias -s tgz=’tar -xzvf’
      alias -s zip=’unzip’
      alias -s bz2=’tar -xjvf’
      别名

zsh插件

  • git 自带
  • wd
    plugins=(... wd)
    
    比如我们有一个常用的目录 /usr/nginx/www/html,我们首先进入到这个目录中,然后输入
    
    wd add web
    这个命令相当于给当前目录做了一个标识,标识名叫做  web ,我们下次如果再想进入这个目录,只需输入: 
    
    wd web
    这样就可以完成目录切换了,非常方便。
    
    它的原理并不复杂,它维护了一个标识和实际路径的映射表,我们使用 wd add 命令可以添加新的映射,可以使用 wd rm 命令删除已有的映射,还可以使用 wd show 命令查看现有的映射。
    
    这个简单的插件解决了一个很实际的问题,推荐使用。 wd 插件的更多内容可以查看它的 github 主页:  https://github.com/mfaerevaag/wd
    
  • autojump
    • Mac 安装
      brew install autojump
      plugins=(... autojump)
    • 其他平台
      git clone git://github.com/joelthelion/autojump.git
      cd autojump
      ./install.py or ./uninstall.py
      
      plugins=(... autojump)
    • usage
      跳转到文件夹
      j foo
      
  • zsh-syntax-highlighting
    • Mac 安装
      brew install zsh-syntax-highlighting
      把 source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh 加入. zshrc
      
    • 其他平台
      git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
      
      然后在 plugins=(... zsh-syntax-highlighting)激活,高亮显示命令,错误会显示红色

你可能感兴趣的:(zsh使用)