aboutsummaryrefslogtreecommitdiff
path: root/vim/config/dist.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-06 14:54:23 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-06 14:54:23 +1200
commit6dbda3419aeada6c31a1083af198de4e38ee31b4 (patch)
tree03e505d334f80cc97c7b11e84f553c127dfb1058 /vim/config/dist.vim
parentUpdate markdown/autoformat.vim (diff)
downloaddotfiles-6dbda3419aeada6c31a1083af198de4e38ee31b4.tar.gz
dotfiles-6dbda3419aeada6c31a1083af198de4e38ee31b4.zip
Consolidate .vimrc and .vim/filetype.vim
And add .vim/script.vim, to be composed in the next commit
Diffstat (limited to 'vim/config/dist.vim')
-rw-r--r--vim/config/dist.vim30
1 files changed, 0 insertions, 30 deletions
diff --git a/vim/config/dist.vim b/vim/config/dist.vim
deleted file mode 100644
index 0a20be48..00000000
--- a/vim/config/dist.vim
+++ /dev/null
@@ -1,30 +0,0 @@
-" Disable most core plugin stuff that I don't use; after/plugin/dist.vim
-" clears these variables later
-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 = 1
- let g:loaded_vimballPlugin = 1
-
- " This is what grep, sed, Awk, and Perl are for
- let g:loaded_logiPat = 1
-
- " ^Z, my dudes
- let g:loaded_netrwPlugin = 1
-
- " Vim servers? What is this, Emacs?
- 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