summaryrefslogtreecommitdiffstats
path: root/runtime/vimrc_example.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-09-27 22:23:55 +0200
committerBram Moolenaar <Bram@vim.org>2017-09-27 22:23:55 +0200
commit24a98a0eb77245adc50facad8b735b20bfd31a7e (patch)
treeffdfef4e7528ec317d59463e5ff83d07e466c0d7 /runtime/vimrc_example.vim
parent9cf39cc57f63f57b4a335cd25371eb456824f049 (diff)
Update runtime files
Diffstat (limited to 'runtime/vimrc_example.vim')
-rw-r--r--runtime/vimrc_example.vim6
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/vimrc_example.vim b/runtime/vimrc_example.vim
index 7f5bae0726..a68ebe53d3 100644
--- a/runtime/vimrc_example.vim
+++ b/runtime/vimrc_example.vim
@@ -1,7 +1,7 @@
" An example for a vimrc file.
"
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last change: 2016 Jul 28
+" Last change: 2017 Sep 20
"
" To use it, copy it to
" for Unix and OS/2: ~/.vimrc
@@ -53,6 +53,8 @@ endif " has("autocmd")
"
" The matchit plugin makes the % command work better, but it is not backwards
" compatible.
+" The ! means the package won't be loaded right away but when plugins are
+" loaded during initialization.
if has('syntax') && has('eval')
- packadd matchit
+ packadd! matchit
endif