vim配置文件

set nocompatible // 取消vi兼容
set number //开启行号显示
filetype on
set autoindent
set smartindent
set autoindent
set cindent
set shiftwidth=4
set softtabstop=4
set tabstop=4

set showmatch
set ruler
set cursorline
set incsearch
set showcmd
filetype plugin indent on
autocmd FileType text setlocal textwidth=78 // 自动折行的宽度

inoremap ’ ‘‘i
inoremap " ""i
inoremap ( ()i
inoremap [ []i
inoremap { {}O
func SkipPair()
if getline(’.’)[col(’.’) - 1] == ‘)’ || getline(’.’)[col(’.’) - 1] == ‘]’ || getline(’.’)[col(’.’) - 1] == ‘"’ || getline(’.’)[col(’.’) - 1] == “’” || getline(’.’)[col(’.’) - 1] == ‘}’
return “<ESC>la”
else
return “\t”
endif
endfunc
inoremap =SkipPair()

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

syntax enable
set background=dark
colorscheme solarized //主题设置

set guifont=Fira\ Code\ Retina:h18 // 字体设置

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 = ‘"’ . KaTeX parse error: Expected 'EOF', got '\diff' at position 15: VIMRUNTIME . '\̲d̲i̲f̲f̲"' else …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

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值