syntax on "语法高亮度显示
set nocompatible "去掉有关vi一致性模式
set ruler "打开状态栏标尺
set number "显示行号
set cursorline "突出显示当前行
set showmatch "匹配模式,如左右括号匹配
set autoindent "把当前行的对起格式应用到下一行
set smartindent "依据上面的对起格式智能选择对起方式
set incsearch "搜索选项
set tabstop=4 "Tab键为4个空格
set softtabstop=4 "Backspace删除4个空格
set shiftwidth=4 "当行之间交错时使用4个空格
set expandtab "把Tab转为对应空格数
set history=50 "设置命令历史记录为50条
set noeb "去掉输入错误的提示声音
"F5编译C/C++程序
map <F5> :call Compile()<CR>
func! Compile()
exec "w"
if &filetype == "c"
exec "!gcc -c %"
elseif &filetype == "cpp"
exec "!g++ -c -w %"
endif
endfun