win7 gvim配色方案
打开gvim界面-”编辑”-“启动设定”
将原来内容清空后,替换如下配置
set nocompatible
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin
"设置行号显示
set nu!
colorscheme desert
syntax enable
syntax on
let g:winManagerWindowLayout='FileExplorer|TagList'
nmap wm :WMToggle
"启动备份
set nobackup
setlocal noswapfile
set bufhidden=hide
set wrap
set guifont=courier_new:h10
set clipboard+=unnamed
set fenc=utf-8
set fencs=utf-8,usc-bom,euc-jp,gb18030,gbk,gb2312,cp936
" 设置backup file后缀
set backupext=.bak
" 设置backup dir
set backupdir=E:/vim_bak
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
if $VIMRUNTIME =~ ' '
if &sh =~ '\<cmd'
if empty(&shellxquote)
let l:shxq_sav = ''
set shellxquote&
endif
let cmd = '"' . $VIMRUNTIME . '\diff"'
else
let cmd = substitute($VIMRUNTIME, ' ', '" ', '') . '\diff"'
endif
else
let cmd = $VIMRUNTIME . '\diff'
endif
silent execute '!' . cmd . ' ' . opt . arg1 . ' ' . arg2 . ' > ' . arg3
if exists('l:shxq_sav')
let &shellxquote=l:shxq_sav
endif
endfunctio
转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。
文章标题:win7 gvim配色方案
本文作者:wangzhirui
发布时间:2019-09-20, 10:11:57
最后更新:2025-02-27, 02:03:59
原始链接:https://wangzhirui.com/2019/09/20/win7-gvim配色方案/转载请保留原文链接及作者。