我的Vim(Gvim) 配置

大家都很强, 可与之共勉。

因为暂时用不到Linux,所以先用Gvim凑合一下。

之前的有点小问题…Upd(2018.4.01)

我的配置

source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin

set ai
set nu
set cin
set hlsearch
set incsearch
set shiftwidth=8
set tabstop=8
set softtabstop=8
set mouse=a
set smartindent
set showcmd

syntax on

imap jj 
inoremap ( ()i
inoremap [ []i
inoremap " ""i
inoremap { {}iO

winpos 5 5
set lines=30
set columns=116

map  : !start gvim $vim/_vimrc 

autocmd FileType cpp set cindent
autocmd FileType cpp map  : !start gvim %<.in 
autocmd FileType cpp map  : !start gvim %<.out 
autocmd FileType cpp map  : w  : ! g++ % -o %< -g -Wall -Wextra -Wconversion 
autocmd FileType cpp map  : w  : ! g++ % -o %< -O2 -Wall -Wextra -Wconversion 
autocmd FileType cpp map  : ! gdb %< --silent 
autocmd FileType cpp map  : ! %< 

color desert
set guifont=Courier_new:h16:b:cDEFAULT

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 =~ '\
      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
endfunction

你可能感兴趣的:(VIM)