-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
56 lines (38 loc) · 1.55 KB
/
README
File metadata and controls
56 lines (38 loc) · 1.55 KB
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
50
51
52
53
54
55
Installation:
git clone https://github.com/tnitsche/vimfiles.git ~/.vim
Create symlinks/files:
cd .vim/
rake install
git submodule update --init
See http://vimcasts.org/episodes/synchronizing-plugins-with-git-submodules-and-pathogen/
for details
If you get errors while pushing, check your .git/config. Remote origin has to be
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = git@github.com:tnitsche/vimfiles.git
Adding new plugins:
cd ~/.vim
git submodule add https://github.com/vim-scripts/openssl.vim.git bundle/openssl
git add .
git commit -m "Install openssl.vim bundle as a submodule."
VIM plugin notes
* taglist:
do something like
ctags --exclude=.git \
--exclude=log \
--exclude=app/views \
--exclude=public/export \
--exclude=public/export.dev \
--exclude=public/javascripts \
--exclude=public/javascripts_pm \
--exclude=public/stylesheets \
--exclude=vendor/plugins/polonium \
--exclude=vendor/plugins/asset_packager \
--exclude=public/position_pages \
--exclude=db/enumerations/common \
-R .
to build a valid taglist for your Rails project (your exclude list may vary).
* command-t:
read :he command-t install notes and requirements (ruby, rake etc.). After cloning
you have to do
cd ~/.vim/bundle/command-t && rake make