execute pathogen#infect()
filetype plugin indent on
set nocompatible " We're running Vim, not Vi!
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
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
" Lighline plugin activation
autocmd FileType python setlocal expandtab shiftwidth=4 tabstop=4
filetype plugin indent on
autocmd FileType ruby setlocal expandtab tabstop=2 shiftwidth=2 softtabstop=2
filetype plugin indent on
autocmd FileType yaml setlocal expandtab tabstop=2 shiftwidth=2 softtabstop=2
filetype plugin indent on
autocmd FileType bash setlocal expandtab shiftwidth=2 tabstop=2
filetype plugin indent on
" Paste mode on / off by F2
" vimdiff coloring change
map <F6> :windo set syn=OFF<CR>
" Nerdtree open side menu by "ctrl-o"
map <C-o> :NERDTreeToggle<CR>