我好像没有上传图片的权限,效果图可以在这里看到
http://solary.cn/article.asp?id=4
欢迎达人指教~~

详细配置如下:
set nocompatible
set number
set wrap!
filetype on
set history=50
filetype plugin on
"set background=dark
colorscheme pablo
syntax on
set cursorline
set autoindent
set smartindent
set tabstop=4
set shiftwidth=4
set softtabstop=4
set noexpandtab
set smarttab
set showcmd
set showmode
set showmatch
set vb t_vb=
set ruler
set hls
set incsearch
set cin
set mouse=a
set cindent
set sm
set ai
"G++ Compiler
map <F5> :call CompileRunGplusplus()<CR>
func! CompileRunGplusplus()
exec "w"
exec "!g++ % -g -o %<"
exec "! ./%<"
endfunc
map <F6> :call DebugGplusplus()<CR>
fun! DebugGplusplus()
exec "!g++ % -g -o %<"
exec "! gdb %<"
endfun