From ffb551759594718af4dcd8e88585f8062926dde9 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 21 Jun 2018 10:59:34 +1200 Subject: Compress/improve .vimrc plugin disabling comments --- vim/vimrc | 27 ++++++++++----------------- 1 file 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 -- cgit v1.2.3