install oh my zsh - nonelittlesong/study-ubuntu GitHub Wiki

参考

查看当前的shell

$ echo $SHELL

查看系统中可使用的shell

$ cat /etc/shells

安装zsh

$ sudo apt-get update
$ sudo apt-get install zsh -y

安装oh-my-zsh

# 手动
curl -Lo install.sh https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh
sh install.sh
# 使用curl
$ sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# 使用wget
$ sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"

zsh配置

autojump

https://www.cnblogs.com/westfly/p/3283525.html
https://www.jianshu.com/p/15f0ffaa88d7