aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-21 10:59:34 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-21 11:02:26 +1200
commitffb551759594718af4dcd8e88585f8062926dde9 (patch)
tree5aa1dcf8ad6a4a2b5037a0c6f3c84e6ecd472caf
parentMore alphabetical ordering in .vimrc (diff)
downloaddotfiles-ffb551759594718af4dcd8e88585f8062926dde9.tar.gz
dotfiles-ffb551759594718af4dcd8e88585f8062926dde9.zip
Compress/improve .vimrc plugin disabling comments
-rw-r--r--vim/vimrc27
1 files changed, 10 insertions, 17 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 78ace282..1b7dd226 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -314,31 +314,24 @@ endif
" clears these variables later
if 1
- " 2html.vim is often useful, so keep that
- " matchparen.vim I use constantly
-
- " I handle versioning plugins manually, and have never used .vba
+ " I use tohtml.vim often
+ " I like matchparen.vim
+ " I manage plugins myself with Git and a Makefile
let g:loaded_getscriptPlugin = 1
let g:loaded_vimballPlugin = 1
-
- " This is what grep, sed, Awk, and Perl are for
+ " Vim is the wrong tool for reading archives or compressed text
+ let g:loaded_gzip = 1
+ let g:loaded_tarPlugin = 1
+ let g:loaded_zipPlugin = 1
+ " I prefer filtering text with Unix tools
let g:loaded_logiPat = 1
-
- " ^Z, my dudes
+ " The shell, tab completion, and 'wildmenu' are good enough
let g:loaded_netrwPlugin = 1
-
- " Vim servers? What is this, Emacs?
+ " I don't use Vim servers
let g:loaded_rrhelper = 1
-
" System dictionaries plus custom per-machine spell files are fine
let g:loaded_spellfile_plugin = 1
- " 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 = 1
- let g:loaded_tarPlugin = 1
- let g:loaded_zipPlugin = 1
-
endif
" Source all .vim files from ~/.vim/config, which may override any of the