-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME
More file actions
33 lines (21 loc) · 741 Bytes
/
README
File metadata and controls
33 lines (21 loc) · 741 Bytes
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
1) Install vim with python
For Mac: sudo port install vim +python
2) Clone repository to ~/.vim
git clone https://github.com/raphtown/vimconfig.git ~/.vim
3) Symbolic link to .vimrc and .tmux.conf
ln -s ~/.vim/.vimrc ~/.vimrc
ln -s ~/.vim/.tmux.conf ~/.tmux.conf
4) Initialize and update submodules
cd ~/.vim
git submodule init
git submodule update
git submodule foreach git submodule init
git submodule foreach git submodule update
To add a new submodule:
PACKAGE=YOUR_PACKAGE_HERE
GITHUB_USER=GITHUB_USER_HERE
cd ~/.vim; git submodule add https://github.com/$GITHUB_USER/$PACKAGE.git bundle/$PACKAGE
To update all existing submodules:
git submodule foreach git pull origin master
git commit -a -m "Update submodules"
git push