@@ -16,7 +16,6 @@ Plugin 'gmarik/Vundle.vim'
1616
1717" Github
1818Plugin ' tpope/vim-fugitive'
19- Plugin ' tpope/vim-endwise'
2019Plugin ' tpope/vim-surround'
2120Plugin ' tpope/vim-unimpaired'
2221Plugin ' scrooloose/nerdcommenter'
@@ -34,6 +33,10 @@ Plugin 'ervandew/supertab'
3433Plugin ' Lokaltog/vim-easymotion'
3534Plugin ' mattn/emmet-vim'
3635Plugin ' kien/rainbow_parentheses.vim'
36+ Plugin ' airblade/vim-gitgutter'
37+ Plugin ' groenewege/vim-less'
38+ Plugin ' digitaltoad/vim-jade'
39+ Plugin ' Yggdroot/indentLine'
3740
3841Plugin ' marcweber/vim-addon-mw-utils'
3942Plugin ' tomtom/tlib_vim'
@@ -74,10 +77,10 @@ set smartcase " Try and be smart about cases
7477nnoremap j gj
7578nnoremap k gk
7679" Appearance {{{2
77- " set number " Always show line numbers
80+ set number " Always show line numbers
7881set numberwidth = 3 " Changed the width of line number columns
7982set listchars = tab :\|\ ,trail: ·,eol :¬ " Use new symbols for tabstops and EOLs
80- set ts = 2 sts = 2 sw = 2 noexpandtab " Default tab stops
83+ set ts = 4 sts = 4 sw = 4 noexpandtab " Default tab stops
8184set backspace = indent ,eol ,start
8285set showcmd " Shows incomplete command
8386set novb noeb " Turn off visual bell and remove error beeps
@@ -91,9 +94,15 @@ set encoding=utf-8
9194set cursorline " Highlight current line
9295set laststatus = 2 " Always show the statusline
9396set t_Co = 256 " Explicitly tell Vim that the terminal supports 256 colors
97+
98+ " Indent lines
99+ let g: indentLine_color_term = 239
100+ let g: indentLine_char = ' |'
101+ let g: indentLine_leadingSpaceChar = ' ·'
102+
94103" Colors and Theme {{{2
95104set background = dark
96- colorscheme badwolf
105+ colorscheme molokai
97106" [ Auto Commands ] {{{1
98107" Auto source vimrc on save {{{2
99108augroup reload_vimrc " {
0 commit comments