aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vimrc-full4
1 files changed, 4 insertions, 0 deletions
diff --git a/vimrc-full b/vimrc-full
index f3dc1ca..80902de 100644
--- a/vimrc-full
+++ b/vimrc-full
@@ -292,7 +292,11 @@ else " default Vim?
292 " scripts from the default vim installation, which do not get loaded by default, but are useful. 292 " scripts from the default vim installation, which do not get loaded by default, but are useful.
293 if filereadable($VIMRUNTIME.'/macros/editexisting.vim') 293 if filereadable($VIMRUNTIME.'/macros/editexisting.vim')
294 packadd! editexisting 294 packadd! editexisting
295 endif
295 296
297 " load default plugin 'matchit' to allow % to jump between tags
298 if filereadable($VIMRUNTIME.'/macros/matchit.vim')
299 packadd! matchit
296 endif 300 endif
297 301
298endif 302endif
..