1.zsh
zsh
是一款功能强大终端(shell)软件,既可以作为一个交互式终端,也可以作为一个脚本解释器。它在兼容 Bash 的同时 (默认不兼容,除非设置成 emulate sh) 还有提供了很多改进,例如:
- 更高效
- 更好的自动补全
- 更好的文件名展开(通配符展开)
- 更好的数组处理
- 可定制性高
目前常用的 Linux 系统和 OS X 系统的默认 Shell 都是 bash,但是真正强大的 Shell 是深藏不露的 zsh
, 这货绝对是马车中的跑车,跑车中的飞行车,史称『终极 Shell』,但是由于配置过于复杂,所以初期无人问津,很多人跑过来看看 zsh 的配置指南,什么都不说转身就走了。直到有一天,国外有个穷极无聊的程序员开发出了一个能够让你快速上手的zsh项目,叫做「oh my zsh」,Github 网址是:https://github.com/robbyrussell/oh-my-zsh 这玩意就像「X天叫你学会 C++」系列,可以让你神功速成,而且是真的。
Powerlevel9k
是一个oh-my-zsh
主题,可以用来创建非常有用和美观的终端环境。
autojump
一键直达目录,用于快速切换目录。只要你记得目录的模糊的名字,就可以使用命令j 目录名字
来一键跳转到指定目录,而不用一遍又一遍重复“cd ls cd ls cd ls ……”。
zsh-syntax-highlighting
高亮你的zsh可用命令.。
zsh-autosuggestions
终端自动提示插件
安装
1.安装oh-my-zsh
# 安装zsh
apt-get install zsh -y
# 修改shell为zsh
chsh -s /bin/zsh
# 安装oh-my-zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
2.安装并配置autojump
apt-get install autojump -y
echo '. /usr/share/autojump/autojump.sh'>>~/.zshrc
3.设置默认shell为zsh
chsh -s /bin/zsh
配置完成后重启终端。
4.安装Powerline字体
Github:https://github.com/powerline/fonts
# clone
git clone https://github.com/powerline/fonts.git
# install
cd fonts
./install.sh
5.设置终端字体
打开终端菜单:Edit > Profile Preferences
在General选项卡,勾选Custom font,自定义字体,选择字体为Meslo LG L DZ for Powerline Regular
6.安装Powerlevel9k
Github:https://github.com/bhilburn/powerlevel9k
To install this theme for use in Oh-My-Zsh, clone this repository into your OMZ custom/themes directory.
git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k
You then need to select this theme in your ~/.zshrc:
ZSH_THEME="powerlevel9k/powerlevel9k"
7.安装zsh-syntax-highlighting
Github:https://github.com/zsh-users/zsh-syntax-highlighting
Clone this repository in oh-my-zsh’s plugins directory:
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
Activate the plugin in~/.zshrc
:
plugins=( [plugins...] zsh-syntax-highlighting)
Source ~/.zshrc to take changes into account:
source ~/.zshrc
8. 安装zsh-autosuggestions
Github:https://github.com/zsh-users/zsh-autosuggestions#oh-my-zsh
Clone this repository into $ZSH_CUSTOM/plugins (by default ~/.oh-my-zsh/custom/plugins)
git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
Add the plugin to the list of plugins for Oh My Zsh to load:
plugins=( [plugins...] zsh-autosuggestions)
最后重启终端,查看效果。