forked from merryprankster/vim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
38 lines (30 loc) · 1013 Bytes
/
README
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
Note: this module is not necessarily of any use to anyone but me, but you're free to use it anyway ;)
INITIAL SETUP
=============
git clone https://[email protected]/merryprankster/vim.git ~/.vim
ln -s ~/.vim/.vimrc ~
cd ~/.vim
git submodule init
git submodule update
ADDING NEW MODULE
=================
git submodule add http://github.com/msanders/snipmate.vim.git bundle/snipmate
git commit -m "snipmate-plugin"
git push origin master
INSTALLED MODULES
=================
nerdtree
snipmate
sparkup
supertab
vim-surround
------------
* cs - change surroundings, example: cs"' changes quotes to single quotes
* ds - delete surroundings, example: ds" removes matching quotes
* ys - add surroundings, example: ysw" quotes the word where the bracket is
* ySS - add surroundings with line breaks and intendation, example ySS<foo> surrounds the line with <foo>
vim-taglist
-----------
Requirements:
* Exuberant ctags 5.0 and above (apt-get install exuberant-ctags)
Start with :TlistOpen or :TlistToggle