jimenezrick / vimconfig

My personal Vim configuration

Home Page:http://r.untroubled.be/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

   _    ___
  | |  / (_)___ ___
  | | / / / __ `__ \
  | |/ / / / / / / /
  |___/_/_/ /_/ /_/
======================

F*ck yeah!


 How to use this repository
----------------------------

1. git clone <repository> .vim
2. cd .vim
3. git submodule init
4. git submodule update

This Vim configuration uses Pathogen (http://github.com/tpope/vim-pathogen),
the plugins are placed in `.vim/bundle/'. Some of the plugins are hosted in
GitHub so I use Git submodules to track those plugins in `.vim/bundle/' as
separate repositories.


 Working with Git submodules
-----------------------------

- To add a new submodule run from the top level directory:

	git submodule add <repository> bundle/<plugin>

- To pull a submodule repository run from the top level directory:

	git submodule init
	git submodule update

- To update all the submodule repositories in one shot run from the top
  level directory, commit afterwards:

	git submodule foreach 'git pull'

- To remove an existing submodule:

	git rm bundle/<plugin>

About

My personal Vim configuration

http://r.untroubled.be/


Languages

Language:Vim Script 100.0%