[vim]matchit as vundle plugin

This commit is contained in:
Mathieu Maret 2015-12-07 12:05:07 +01:00
parent e1346a0f25
commit 4f7dbfbaf5
1 changed files with 4 additions and 3 deletions

7
.vimrc
View File

@ -69,7 +69,7 @@ au BufWinEnter * checktime
set backspace=indent,eol,start
" don't use Ex mode, use Q for formatting
map Q gq
" disable mouse
" Enable mouse for 'a'll mode
set mouse=a
" key combination timeout
set notimeout
@ -192,8 +192,6 @@ set incsearch
set showmatch
" tenths of a second before blink matching brackets
set mat=5
" % match if/then/else/...
runtime macros/matchit.vim
" search word and list lines to jump with F3
" map <F3> [I:let nr = input("Which one: ") <Bar>execute "normal " . nr ."[\t"<CR>
" go to declaration with F5
@ -491,6 +489,9 @@ Plugin 'vim-scripts/Align'
" open file at the given line with the file.txt:20 syntax
Plugin 'bogado/file-line'
" % match if/then/else/html ...
Plugin 'tmhedberg/matchit'
" Kernel Formatting
Plugin 'gregkh/kernel-coding-style.git'
call vundle#end()