-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
40 lines (32 loc) · 829 Bytes
/
vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
call plug#begin('~/.vim/plugged')
Plug 'scrooloose/syntastic'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'altercation/vim-colors-solarized'
Plug 'tpope/vim-fugitive'
Plug 'airblade/vim-gitgutter'
call plug#end()
"inoremap jk <ESC>
"let mapleader = "\<Space>"
set ruler
set number
set encoding=utf-8
set backspace=indent,eol,start
set visualbell
set modeline
" vim-airline
set laststatus=2
let g:airline_theme = "base16"
let g:airline_powerline_fonts = 1
" Solarized
let g:solarized_termcolors=256
set background=dark
colorscheme solarized
" Syntastic
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0