From 818c414103356d9110badbf0fcb723c8cf528e38 Mon Sep 17 00:00:00 2001 From: Kevin Date: Fri, 21 Feb 2014 02:34:23 -0500 Subject: [PATCH] Added an entry to load the system's extended matchit system --- vim/config/settings.vim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vim/config/settings.vim b/vim/config/settings.vim index df51b01..bfcdcd2 100644 --- a/vim/config/settings.vim +++ b/vim/config/settings.vim @@ -54,6 +54,11 @@ set smarttab expandtab autoindent tabstop=4 shiftwidth=4 "configure tabs set laststatus=2 showcmd statusline=%F%m%r%h%w[%L][%{&ff}]%y[%p%%][%04l,%04v] "statusline init and config set hlsearch incsearch ignorecase smartcase "configure search +"load the system version of matchit if another hasn't already been +if !exists('g:loaded_matchit') && findfile('plugin/matchit.vim', &rtp) ==# '' + runtime! macros/matchit.vim +endif + "enable menu tab completion, configure its behaviour and set configure suffixes to reduce priority for and ignore" set completeopt=longest,menuone set wildmenu