aboutsummaryrefslogtreecommitdiff
path: root/vim/config/plugin.vim
blob: 6e79b255960dc1c793810fb4a76279c95918c832 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
" Try to run the version of matchit.vim included in the distribution, if there
" is one; extends % to match more than it does by default
silent! runtime macros/matchit.vim

" Disable most core plugin stuff that I don't use
if has('eval')

  " 2html.vim is often useful, so keep that
  " matchparen.vim I use constantly

  " I handle versioning plugins manually, and have never used .vba
  let g:loaded_getscriptPlugin = 'skipped'
  let g:loaded_vimballPlugin = 'skipped'

  " This is what grep, sed, Awk, and Perl are for
  let g:loaded_logiPat = 'skipped'

  " ^Z, my dudes
  let g:loaded_netrwPlugin = 'skipped'

  " Vim servers? What is this, Emacs?
  let g:loaded_rrhelper = 'skipped'

  " System dictionaries plus custom per-machine spell files are fine
  let g:loaded_spellfile_plugin = 'skipped'

  " If I want to read a file or a file archived within it I'll decompress or
  " unarchive it myself; a text editor should not do this
  let g:loaded_gzip = 'skipped'
  let g:loaded_tarPlugin = 'skipped'
  let g:loaded_zipPlugin = 'skipped'

endif