Skip to content

Latest commit

 

History

History
79 lines (55 loc) · 2.09 KB

README.md

File metadata and controls

79 lines (55 loc) · 2.09 KB

vimfiles

Vim setup by JP Flouret

Plugins

Installation

This repository is intended to be cloned into the user's Vim runtime folder (~/.vim on unix or %USERPROFILE%/vimfiles on Windows)

Linux/Unix

cd ~
git clone --recursive https://github.com/jpflouret/vimfiles.git .vim

Windows

cd %USERPROFILE%
git clone --recursive https://github.com/jpflouret/vimfiles.git vimfiles

For Vim version < 7.4:

Linux

ln -s .vim/vimrc ~/.vimrc

Windows

echo "runtime vimrc" > ~/_vimrc

Working with vimfiles

Updating ~/.vim

cd ~/.vim
git pull
git submodule init      # Initialize new submodules
git submodule update    # Checkout submodules

Adding a new plugin

cd ~/.vim
git submodule add <plugin remote url> bundle/<plugin>

Updating all submodules to latest

cd ~/.vim
git submodule foreach "(git checkout master && git pull)&"
git add bundle/
git commit

Requirements

  • Vim 7.3+
  • Python support for Vim
  • Python 2.4+

License

See LICENSE.md