colorscheme desert " 设置主题方案
set number " 显示行号
set cursorline " 突出显示当前行
set tabstop=4 " 设置tab键的宽度
set backspace=2 " 设置退格键可用
syn on " 打开语法高亮
set showmatch " 设置匹配模式,类似当输入一个左括号时会匹配相应的那个右括号
set smartindent " 智能对齐方式
set shiftwidth=4 " 换行时行间交错使用4个空格
set autoindent " 自动对齐
set ai! " 设置自动缩进
filetype plugin indent on " 开启插件
set completeopt=longest,menu
nmap s :cs find s =expand("") "cscope插件热键
nmap g :cs find g =expand("")
nmap c :cs find c =expand("")
nmap t :cs find t =expand("")
nmap e :cs find e =expand("")
nmap f :cs find f =expand("")
nmap i :cs find i ^=expand(""){1}lt;CR>
nmap d :cs find d =expand("")