set nocompatible
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin
set diffexpr=MyDiff()
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 =~ '\
let cmd = '""' . $VIMRUNTIME . '\diff"'
let eq = '"'
else
let cmd = substitute($VIMRUNTIME, ' ', '" ', '') . '\diff"'
endif
else
let cmd =
$VIMRUNTIME . '\diff'
endif
silent execute '!' . cmd . ' ' . opt . arg1 . '
' . arg2 . ' > ' . arg3 . eq
endfunction
set nocompatible
set backspace=2
source $VIMRUNTIME/vimrc_example.vim
if has('win32')
source
$VIMRUNTIME/mswin.vim
behave
mswin
endif
" 新建文件使用的编码
"set encoding=utf-8
"set
fileencodings=ucs-bom,utf-8,cp936,gb18030,big5,euc-jp,euc-kr,latin1
"set fileencoding=utf-8
" 解决菜单乱码
"set langmenu=zh_CN
"let $LANG = 'zh_CN.UTF-8'
"source $VIMRUNTIME/delmenu.vim
"source $VIMRUNTIME/menu.vim
set nu
set encoding=utf-8
set ff=unix
set langmenu=en_gb.utf-8
filetype plugin on
filetype indent on
set showcmd
set ignorecase
set hlsearch
set laststatus=2
set expandtab
set shiftwidth=4
set softtabstop=4
set tabstop=4
set backspace=2
set smarttab
set lbr
colorscheme elflord
安装的时候不要native language选项就不会出现乱码。
阅读(459) | 评论(0) | 转发(0) |