vi配置

来源:互联网 发布:移魂都市知乎 编辑:程序博客网 时间:2024/05/16 22:25

~/.vimrc
set nu
syntax on
set guifont=DejaVu\ Sans\ Mono\ 12
set softtabstop=4
set shiftwidth=4
set expandtab
set guioptions-=T
set nobackup
set formatoptions=tcrqn
set cindent
set smartindent
set incsearch
set autoindent
set encoding=utf-8
set fileencodings=ucs-bom,utf-8,chinese

“Show matching bracets
set showmatch

“”Get out of VI’s compatible mode
set nocompatible

if has(“cscope”)
set csprg=/usr/bin/cscope
set csto=0
set cst
set nocsverb
” add any database in current directory
if filereadable(“cscope.out”)
cs add cscope.out
” ” else add database pointed to by
” environment
elseif CSCOPEDB!=csaddCSCOPE_DB
endif
set csverb
set cscopetag
set cscopequickfix=s-,g-,c-,d-,t-,e-,f-,i-
nmap :cs find s =expand(“”)
nmap :cs find g =expand(“”)
nmap :cs find c =expand(“”)
nmap :cs find t =expand(“”)
nmap :cs find e =expand(“”)
nmap :cs find f =expand(“”)
nmap :cs find i =expand(“”)
nmap :cs find d =expand(“”)
endif

“Have the mouse enabled all the time
“set mouse=a

“”Set to auto read when a file is changed from the outside
set autoread

“Enable filetype plugin
filetype plugin indent on
colo desert
set hlsearch

“let Tlist_Ctags_Cmd = ‘/usr/bin/ctags-exuberant’

nnoremap :TlistToggle
“let Tlist_Use_Right_Window=1
colorscheme delek
“colorscheme evening
set ruler

0 0
原创粉丝点击