From a30df6e49872a1ac382300eaa4df9c8eb9ac1620 Mon Sep 17 00:00:00 2001 From: Ayman Singh Date: Tue, 17 Nov 2015 11:55:11 -0500 Subject: [PATCH] adds Vundle instructions to INSTALL.md --- INSTALL.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/INSTALL.md b/INSTALL.md index bd09f8b..b0e0d22 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -13,3 +13,18 @@ If you get warnings about overwriting existing files while unpacking the ZIP arc ## Installation using a Vim plug-in manager If you prefer you can also use [Pathogen](http://www.vim.org/scripts/script.php?script_id=2332), [Vundle](https://github.com/gmarik/vundle) or a similar tool to install and update the [vim-session](https://github.com/xolox/vim-session) and [vim-misc](https://github.com/xolox/vim-misc) plug-ins using local clones of the git repositories. This takes a bit of work to set up the first time but it makes updating much easier, and it keeps each plug-in in its own directory which helps to keep your Vim profile uncluttered. + + +**Vundle** + +For Vundle, add the following lines in the plugin section of the vimrc file: + + Plugin 'xolox/vim-misc' + Plugin 'xolox/vim-session' + +Then do + + :PluginInstall + + +