我的Ubuntu终端配置

记录一下我的Ubuntu终端配置,先上效果图:

Terminator

Terminator是一个实用的GNOME虚拟终端程序,我用来代替默认的Terminal。它的强大之处在于支持分屏与选择复制粘贴。

安装方式也非常简单:

sudo apt-get install terminator

配色

配色我选择solarized,包括终端和Vim。

终端

git clone https://github.com/ghuntley/terminator-solarized.git
cd terminator-solarized
mkdir -p ~/.config/terminator/
touch ~/.config/terminator/config
# if you want to replace current config:
cp config ~/.config/terminator
# if you want to append current config:
cat config >> ~/.config/terminator/config

Vim

git clone [email protected]:altercation/vim-colors-solarized.git
cd vim-colors-solarized/colors
mv solarized.vim ~/.vim/colors/

修改vimrc:

syntax enable
set background=dark
colorscheme solarized

oh-my-zsh

apt-get install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
chsh -s `which zsh`
//restart to work
sudo shutdown -r 0

我用的zsh主题是ys

主题

最后一步就是安装一款漂亮的主题了

首先在这里下载主题包,将解压后的文件夹移到/usr/share/themes/,接着安装图标:

sudo add-apt-repository ppa:noobslab/icons
sudo apt-get update
sudo apt-get install ultra-flat-icons

然后需要用到unity-tweak-tool

sudo apt-get install unity-tweak-tool
sudo unity-tweak-tool

在Theme和Icons下分别选择刚才安装的主题和图标。大功告成 :-)

你可能感兴趣的:(ubuntu)