-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
41 lines (31 loc) · 771 Bytes
/
.vimrc
File metadata and controls
41 lines (31 loc) · 771 Bytes
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
40
41
filetype plugin on
filetype indent on
" Auto read when a file is changed from outside
set autoread
syntax enable
" Auto Indent
set ai
set expandtab
set softtabstop=2
set shiftwidth=2
set hlsearch
set showmatch
set relativenumber
execute pathogen#infect()
" Solarized Dark
if has('gui_running')
set background=light
else
set background=dark
endif
let g:solarized_termtrans = 1
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
let g:syntastic_puppet_puppetlint_args='--no-80chars-check --no-class_inherits_from_params_class-check'