Improve comments, correct plugin location

This commit is contained in:
Gene Liverman 2019-05-22 22:35:06 -04:00
parent de5db18860
commit deac2e1783
No known key found for this signature in database
GPG key ID: 66D794FE7043CBCA

View file

@ -1,17 +1,12 @@
set nocompatible " be iMproved, required filetype off " required by Vundle. filetype is reenabled after Vundle starts
filetype off " required
" set the runtime path to include Vundle and initialize " set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin() call vundle#begin()
" let Vundle manage Vundle, required " let Vundle manage Vundle, required for Vundle to work right
Plugin 'VundleVim/Vundle.vim' Plugin 'VundleVim/Vundle.vim'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
Plugin 'altercation/vim-colors-solarized' Plugin 'altercation/vim-colors-solarized'
Plugin 'ekalinin/Dockerfile.vim' Plugin 'ekalinin/Dockerfile.vim'
Plugin 'elzr/vim-json' Plugin 'elzr/vim-json'
@ -25,6 +20,10 @@ Plugin 'tomtom/tlib_vim'
Plugin 'vim-ruby/vim-ruby' Plugin 'vim-ruby/vim-ruby'
Plugin 'vim-syntastic/syntastic' Plugin 'vim-syntastic/syntastic'
" All of your Plugins must be added before the following line
call vundle#end()
filetype plugin indent on " required for plugins to be able to adjust indent
" Brief help " Brief help
" :PluginList - lists configured plugins " :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate " :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate