configs for linux console

screenshots

vim with tmux:

vim

cmdline:

cmd

tig:

tig

Installation

install prerequisites

vim: vim 7.4 above prefered, with lua enabled

refer:

a guide for update vim

zsh:

sudo apt-get install zsh

tig:

git clone git://github.com/jonas/tig.git
make prefix=/usr/local
sudo make install prefix=/usr/local

tmux:

sudo apt-get install tmux

Clone this repo somewhere on your machine

./install.sh

restart your terminal and enjoy

other tools prefered to install

grep replacement

ag:

sudo apt-get install silversearcher-ag

rg

YCM color_coded generator

YCM-Generator

config_gen.py PROJECT_DIR # generate .ycm_extra_conf.py
config_gen.py PROJECT_DIR -F cc # generate .color_coded

vim plugins need to compile install

YouCompleteMe:

python install.py --clang-completer

color_coded:

cd ~/.vim/bundle/color_coded
mkdir build && cd build
cmake ..
make && make install # Compiling with GCC is preferred, ironically