vim config

来源:互联网 发布:安徽卫视网络直播 编辑:程序博客网 时间:2024/06/07 02:27
set nu

au BufReadPost * if line("'\"") > 0|if line("'\"") <= line("$")|exe("norm '\"")|else|exe "norm $"|endif|endif

set ts=4
set expandtab
set shiftwidth=4
set autoindent

if has("cscope")
    set csprg=/usr/bin/cscope
    set csto=0
    set cst
    set nocsverb
    if filereadable("cscope.out")
        cs add cscope.out
    elseif $CSCOPESpaceDB != ""
        cs add $CSCOPESpaceDB
    endif
    set csverb
endif

nmap <C-]>s :cs find s <C-R>=expand("<cword>")<CR><CR>

nmap <C-]>g :cs find g <C-R>=expand("<cword>")<CR><CR>

nmap <C-]>c :cs find c <C-R>=expand("<cword>")<CR><CR>

nmap <C-]>t :cs find t <C-R>=expand("<cword>")<CR><CR>

nmap <C-]>e :cs find e <C-R>=expand("<cword>")<CR><CR>

nmap <C-]>f :cs find f <C-R>=expand("<cfile>")<CR><CR>

nmap <C-]>i :cs find i <C-R>=expand("<cfile>")<CR><CR>

nmap <C-]>d :cs find d <C-R>=expand("<cword>")<CR><CR>

set fileencodings=utf-8,ucs-bom,gb18030,gbk,gb2312,cp936
set termencoding=utf-8
set encoding=utf-8



0 0
原创粉丝点击