From deac2e178313a6430f55e928f5d224cdb1cbc966 Mon Sep 17 00:00:00 2001 From: Gene Liverman Date: Wed, 22 May 2019 22:35:06 -0400 Subject: [PATCH] Improve comments, correct plugin location --- link/nix/vimrc | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/link/nix/vimrc b/link/nix/vimrc index 4589f2e..0a485d4 100644 --- a/link/nix/vimrc +++ b/link/nix/vimrc @@ -1,17 +1,12 @@ -set nocompatible " be iMproved, required -filetype off " required +filetype off " required by Vundle. filetype is reenabled after Vundle starts " set the runtime path to include Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() -" let Vundle manage Vundle, required +" let Vundle manage Vundle, required for Vundle to work right 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 'ekalinin/Dockerfile.vim' Plugin 'elzr/vim-json' @@ -25,6 +20,10 @@ Plugin 'tomtom/tlib_vim' Plugin 'vim-ruby/vim-ruby' 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 " :PluginList - lists configured plugins " :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate