代码拉取完成,页面将自动刷新
"关闭兼容模式
set nocompatible
"模仿快捷键,如ctrl+A,Ctrl+C复制、Ctrl+V粘贴等等
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 =~ '\<cmd'
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
" 配色方案
colorscheme molokai
" 字体、字号
" set guifont=Courier\ New:h10
set guifont=Lucida\ Console:h11
set tabstop=4 " 设置tab键的宽度
set shiftwidth=4 " 换行时行间交错使用4个空格
set autoindent " 开启自动对齐
set backspace=2 " 设置退格键可用
set cindent shiftwidth=4 " 自动缩进4空格
set smartindent " 智能自动缩进
set ai! " 设置自动缩进
set nu! " 显示行号
set ambiwidth=double " 显示特殊符号
set showmatch " 显示括号配对情况
set guioptions-=T "关闭上侧工具栏
"set guioptions-=r "关闭右侧滚动条
set hlsearch " 开启高亮显示结果
set incsearch " 开启实时搜索功能
"set cursorline " 突出显示当前行
" set list " 显示Tab符,使用一高亮竖线代替
" set listchars=tab:\|\ ,
" 编码设置
set encoding=utf-8
"set termencoding=utf-8
" 当前编辑的文件编码
set fileencoding=utf-8
"if has("win32")
"set fileencoding=chinese
"else
"set fileencoding=utf-8
"endif
"gvim打开支持编码的文件
" set fileencodings=utf-8,cp936,gbk,gb18030,big5,latin1
set fileencodings=ucs-bom,utf-8,gbk,cp936,gb2312,big5,euc-jp,euc-kr,latin1
"解决提示信息输出乱码
language message zh_CN.utf-8
"解决菜单乱码
source $VIMRUNTIME/delmenu.vim
source $VIMRUNTIME/menu.vim
set laststatus=2 " 开启状态栏信息
set cmdheight=2 " 命令行的高度,默认为1,这里设为2
syntax enable " 打开语法高亮
syntax on " 开启文件类型侦测
set writebackup " 设置无备份文件
set nobackup
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。