Skip to content

Commit d0fe1b4

Browse files
committed
updated vimrc
1 parent c4f581b commit d0fe1b4

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

vimrc

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ Plugin 'gmarik/Vundle.vim'
1616

1717
" Github
1818
Plugin 'tpope/vim-fugitive'
19-
Plugin 'tpope/vim-endwise'
2019
Plugin 'tpope/vim-surround'
2120
Plugin 'tpope/vim-unimpaired'
2221
Plugin 'scrooloose/nerdcommenter'
@@ -34,6 +33,10 @@ Plugin 'ervandew/supertab'
3433
Plugin 'Lokaltog/vim-easymotion'
3534
Plugin 'mattn/emmet-vim'
3635
Plugin 'kien/rainbow_parentheses.vim'
36+
Plugin 'airblade/vim-gitgutter'
37+
Plugin 'groenewege/vim-less'
38+
Plugin 'digitaltoad/vim-jade'
39+
Plugin 'Yggdroot/indentLine'
3740

3841
Plugin 'marcweber/vim-addon-mw-utils'
3942
Plugin 'tomtom/tlib_vim'
@@ -74,10 +77,10 @@ set smartcase " Try and be smart about cases
7477
nnoremap j gj
7578
nnoremap k gk
7679
" Appearance {{{2
77-
" set number " Always show line numbers
80+
set number " Always show line numbers
7881
set numberwidth=3 " Changed the width of line number columns
7982
set 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
8184
set backspace=indent,eol,start
8285
set showcmd " Shows incomplete command
8386
set novb noeb " Turn off visual bell and remove error beeps
@@ -91,9 +94,15 @@ set encoding=utf-8
9194
set cursorline " Highlight current line
9295
set laststatus=2 " Always show the statusline
9396
set 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
95104
set background=dark
96-
colorscheme badwolf
105+
colorscheme molokai
97106
" [ Auto Commands ] {{{1
98107
" Auto source vimrc on save {{{2
99108
augroup reload_vimrc " {

0 commit comments

Comments
 (0)