iTerm安装及其优化

iTerm2下载

https://www.iterm2.com/

安装即可

默认终端为bash

安装完修改zsh为默认终端

chsh -s /bin/zsh

安装完建议去设置代理先

优化

替换背景图片

打开路径:iterm2 -> Preferences -> Profiles -> window -> Background Image

选择一张自己喜欢的壁纸即可

可以通过Blending调节壁纸的透明度: 透明度为0的时候,背景变为纯色(黑色)

安装Oh my zsh

zsh的功能极其强大,只是配置过于复杂,通过Oh my zsh可以很快配置zsh。

这里只做简单的配置,如需要深入了解,可以查看:《oh-my-zsh,让你的终端从未这么爽过》

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

oh-my-zsh开源地址:《oh-my-zsh》

安装PowerFonts

cd 

git clone https://github.com/powerline/fonts.git --depth=1

cd fonts

./install.sh

iTerm2 -> Preferences -> Profiles -> Text -> Fonts

切换到Meslo LG S for Powerline字体,系统终端也要切换,因为不然下面的主题有个箭头符号会显示问号

更改主题

vi ~/.zshrc

修改ZSH_THEME为agnoster

更多主题如下:

https://github.com/ohmyzsh/ohmyzsh/wiki/themes

安装命令补全插件(可选择装但是我不会装的)

跟代码高亮的安装方式一样,这也是一个zsh的插件,叫做zsh-autosuggestion,用于命令建议和补全。

cd ~/.oh-my-zsh/custom/plugins/

git clone https://github.com/zsh-users/zsh-autosuggestions
vi ~/.zshrc

找到plugins,加上这个插件即可

安装高亮插件

cd ~/.oh-my-zsh/custom/plugins/
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git
vi ~/.zshrc

在文件最后一行加入

source ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh

在文件的plugins最后一个加入

zsh-syntax-highlighting

隐藏iTerm2 的用户名和主机名

vi ~/.zshrc

在最上面增加一行:(引号里面一定要是你的用户名)

DEFAULT_USER="anthony"