diff options
author | Max Christian Pohle | 2018-01-03 00:29:26 +0100 |
---|---|---|
committer | Max Christian Pohle | 2018-01-03 00:29:26 +0100 |
commit | d6ad46d52ebf15fcc743e19acd3ace73fbbed98f (patch) | |
tree | 4bf8c872dfeed338f289a2b9f00181c4509f6b70 | |
parent | 58c47135b8ccb48c875854840e2e1ad3fab876b1 (diff) | |
download | vim-d6ad46d52ebf15fcc743e19acd3ace73fbbed98f.tar.bz2 vim-d6ad46d52ebf15fcc743e19acd3ace73fbbed98f.zip |
Now inloading default macro matchit.vim by default
...because why not?
-rw-r--r-- | vimrc-full | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 | ||
298 | endif | 302 | endif |