vim考场配置
syntax on
set number
set mouse=a
set showmatch
set autoindent
set smartindent
set tabstop=2
set shiftwidth=2
set autoread
map <F5> : call Compile() <CR>
func! Compile()
exec 'w'
exec '!g++ % -lm -Wall -std=c++11 -o %<'
exec '!time ./%<'
endfunc
既然选择了远方,便只顾风雨兼程。