iTerm2 + oh my zsh +agnoster
http://www.iterm2.com/downloads.html 1.通过 cat /etc/shells 命令可以查看当前系统可以使用哪些shell; # List of acceptable shells for chpass(1). # Ftpd will not allow users to connect who are not using # one of these shells. /bin/bash /bin/csh /bin/ksh /bin/sh /bin/tcsh /bin/zsh 2.通过 echo $SHELL 命令可以查看我们当前正在使用的shell; # Mac系统中默认的shell为bash shell /bin/bash 3.如果当前的shell不是zsh,我们可以通过 chsh -s /bin/zsh 命令可以将shell切换为shell之zsh,终端重启之后即可生效。 4.将shell切换为zsh之后,我们就可以安装Oh My ZSH了 官方推荐的安装方法为: sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" 记住,爱FQ的童鞋记得先关闭代理哦,不然没法下载成功的 出线以下提示,便是安装成功了^_^ Oh