配置使用 Terminator & ZSH

2016/10/01

在别人博客里看到 Terminator 挺好用的,特别是和zsh搭配真是漂亮,这里总结下怎么弄吧。

安装 Terminator

sudo apt-get install terminator
sudo update-alternatives --config x-terminal-emulator

Setting -> Keyboard -> Shortcuts -> Custom Shortcuts -> add(+) Name : Terminal Command : /usr/bin/terminator Apply Click “Disable” press Ctrl + Alt + T

更换主题

/* 打开Terminator ,进行如下操作 */
Preferenvces -> General
Disable ‘Show titlebar’
Preferenvces -> Profiles -> Colors -> Foreground and Background -> Build-in schemes
Choose ‘Solarized dark’

安装zsh

sudo apt-get install zsh
chsh -s /bin/zsh

安装 on my zsh

wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc

安装powerline字体

git clone https://github.com/powerline/fonts
cd fonts
./install.sh

然后在终端中使用powerline字体

编辑: ~/.zshrc

DEFAULT_USER="Shank"

PS:上面 Shank 替换成你当前的用户名,用whoami查看你的用户名

ZSH_THEME="agnoster"
COMPLETION_WAITING_DOTS="true"

或者用以下简单粗暴的方式屏蔽zsh中的用户名

cd ~/.oh-my-zsh/themes
sudo vim 当前主题名称

找到最下面对build_prompt的定义,把prompt_context#注释掉即可

来自2018/10/29:“以前的自己 Markdown 写得这么烂还敢贴出来。”