标题: vim 配置文件 [打印本页] 作者: mercuryer 时间: 2008-06-18 16:12 标题: vim 配置文件
set nocompatible
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin
set nobackup
set nu
set syntax=on
set incsearch
set hlsearch
set ignorecase
set autochdir
set enc=utf-8
set fenc=utf-8
set fencs=utf-8,ucs-bom,gb18030,gbk,gb2312,big5
set langmenu=zh_CN.UTF-8
set guifont=Bitstream\ Vera\ Sans\ Mono\ 10
syntax enable
colorscheme torte
set sw=4 " shiftwidth
set ts=4 " tabstop
set fo+=mM " formatoptions
set tw=80 " textwidth
"set columns=80
set noautoindent
set expandtab
set diffexpr=MyDiff()
set ruler
function MyDiff()
let opt = '-a --binary '
if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif
if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif
let arg1 = v:fname_in
if arg1 =~ ' ' | let arg1 = '"' . arg1 . '"' | endif
let arg2 = v:fname_new
if arg2 =~ ' ' | let arg2 = '"' . arg2 . '"' | endif
let arg3 = v:fname_out
if arg3 =~ ' ' | let arg3 = '"' . arg3 . '"' | endif
let eq = ''
if $VIMRUNTIME =~ ' '
if &sh =~ '\ ' . arg3 . eq
endfunction
augroup filetypedetect
au! BufRead,BufNewFile *.mako set filetype=html sw=2 ts=2
au! BufRead,BufNewFile *.html set filetype=html sw=2 ts=2
au! BufNewFile,BufRead *.thtml set filetype=php sw=2 ts=2
au! BufNewFile,BufRead *.zcml set filetype=xml sw=2 ts=2
augroup END
let Tlist_Auto_Open=1