aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: e9d27166c02d8daa52e573ad88dad7aef16e737e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# My ~/.vim

I borrowed from different sources, one of them being this:

https://gist.github.com/manasthakur/d4dc9a610884c60d944a4dd97f0b3560

Few differences:

 - My repo is in `~/.vim/`
 - I use pathogen to manage the plugins (should move to Vim 8's packages, but I
   still have few Vim 7.x boxes)
 - Includes gvim configuration

## Using it in a new location

You shouldn't have a `~/.vimrc` or `~/.vim` directory.

    cd && git clone --recursive https://github.com/reidrac/dotvim.git .vim

If you're not using vim 8; create a `.vimrc` with:

    runtime vimrc

## Adding plugins

    git submodule add https://github.com/user/foo.git bundle/foo
    git commit -m "Added foo plugin"

## Updating plugins

    git submodule foreach git pull origin master
    git commit -am "Updated plugins"

### Updating you .vim on a different machine

    git pull

    # Only if a plugin was added
    git submodule init

    git submodule update

## Removing plugins

    git submodule deinit -f bundle/foo
    git rm -r bundle/foo
	git commit -am "Removed plugin"
    rm -rf .git/modules/bundle/foo