aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-13 01:04:43 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-13 01:04:43 +1300
commitfbd2cdef858a0d6e2b0bbecf223c6b0860b6d3b7 (patch)
tree20864e0b84963b98f286d2e9a9f1573d3fbebbfc
parentMerge branch 'release/v0.15.0' (diff)
parentBump version number to 0.16.0 (diff)
downloaddotfiles-fbd2cdef858a0d6e2b0bbecf223c6b0860b6d3b7.tar.gz
dotfiles-fbd2cdef858a0d6e2b0bbecf223c6b0860b6d3b7.zip
Merge branch 'release/v0.16.0'v0.16.0
* release/v0.16.0: Bump version number to 0.16.0 Pre-emptively disable core Vim plugins in config
-rw-r--r--VERSION4
-rw-r--r--vim/config/plugin.vim31
2 files changed, 24 insertions, 11 deletions
diff --git a/VERSION b/VERSION
index cf4f3cda..c78adde1 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v0.15.0
-Sun Nov 12 11:15:22 UTC 2017
+tejr dotfiles v0.16.0
+Sun Nov 12 12:04:12 UTC 2017
diff --git a/vim/config/plugin.vim b/vim/config/plugin.vim
index 407f0880..934424ed 100644
--- a/vim/config/plugin.vim
+++ b/vim/config/plugin.vim
@@ -2,19 +2,32 @@
" is one; extends % to match more than it does by default
silent! runtime macros/matchit.vim
-" netrw plugin configuration
+" Disable most core plugin stuff that I don't use
if has('eval')
- " Don't show the preamble banner
- let g:netrw_banner = 0
+ " 2html.vim is often useful, so keep that
+ " matchparen.vim I use constantly
- " Perform file transfers silently
- let g:netrw_silent = 1
+ " I handle versioning plugins manually, and have never used .vba
+ let g:loaded_getscriptPlugin = 'skipped'
+ let g:loaded_vimballPlugin = 'skipped'
- " Use a tree-style file listing
- let g:netrw_liststyle = 3
+ " This is what grep, sed, Awk, and Perl are for
+ let g:loaded_logiPat = 'skipped'
- " Don't list the current directory shortcut, and don't show tags files
- let g:netrw_list_hide = '^\.$,^tags$'
+ " ^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