250 ubuntu16.04/oh my zsh 开箱

安装

sudo apt-get install zsh

配置

取代bash

chsh -s /bin/zsh

oh my zsh

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

主题

vim ~/.zshrc
ZSH_THEME="agnoster" # (this is one of the fancy ones)

plugins

  • 自动补全
    https://github.com/zsh-users/zsh-autosuggestions
  • 常用目录 wd
  • git git
  • 智能跳转 z
  • 历史 d
  • google web-content

你可能感兴趣的:(linux)