" ============================ " 基础编辑设置 " ============================ setnumber setts=4 setshiftwidth=4 set expandtab set autoindent set encoding=utf-8 set nowrap set cursorline set ruler set rulerformat=%20(%2*%<%f%=\ %m%r\ %3l\ %c\ %p%%%)
highlight OverLength ctermbg=red ctermfg=white guibg=red guifg=white set tw=250 match OverLength /\%250v.*/
set foldenable set foldmethod=manual
set guifontwide=YaHei\ Consolas\ Hybrid\ 12 set guifont=YaHei\ Consolas\ Hybrid\ 12
" ============================ " cscope 快捷键 " ============================ set cscopequickfix=s-,c-,d-,i-,t-,e- nmap fc :csfindc<C-R>=expand("<cword>")<CR><CR> nmap fs :csfind s <C-R>=expand("<cword>")<CR><CR> nmap fg :csfind g <C-R>=expand("<cword>")<CR><CR> nmap ft :csfind t <C-R>=expand("<cword>")<CR><CR> nmap fe :csfinde<C-R>=expand("<cword>")<CR><CR> nmap ff :csfindf<C-R>=expand("<cfile>")<CR><CR> nmap fi :csfind i ^<C-R>=expand("<cfile>")<CR>$<CR> nmap fd :csfind d <C-R>=expand("<cword>")<CR><CR>
" ============================ " 历史记录 (MRU) " ============================ let MRU_File=$HOME.'/.mru_files.txt' let MRU_Max_Entries=50 let MRU_Window_Height=10 let MRU_Auto_Close=1
" ============================ " 搜索和匹配 " ============================ set showmatch set matchtime=1 set ignorecase set hlsearch set incsearch set listchars=tab:\|\ ,trail:.,extends:>,precedes:<,eol:$
set scrolloff=3 set novisualbell
" ============================ " 状态栏 " ============================ set statusline=%F%m%r%h%w\[POS=%l,%v][%p%%]\%{strftime(\"%d/%m/%y\ -\ %H:%M\")} set laststatus=2