Add vim pathogen support.

This commit is contained in:
Gabriel Ebner 2013-05-19 23:33:53 +02:00
parent 9fe23fd1c0
commit 625c86afda
4 changed files with 8 additions and 1 deletions

3
.gitmodules vendored
View File

@ -1,3 +1,6 @@
[submodule "oh-my-zsh"]
path = oh-my-zsh
url = https://github.com/gebner/oh-my-zsh.git
[submodule "vim-pathogen"]
path = vim-pathogen
url = https://github.com/tpope/vim-pathogen.git

View File

@ -6,8 +6,9 @@ FILES = bashrc vimrc zshrc emacs.el gitconfig screenrc commonshrc \
all: $(FILES)
install: $(FILES)
mkdir -p ~/.ssh
mkdir -p ~/.ssh ~/.vim/autoload
for i in $(FILES); do install -m0644 $$i ~/.$$i; done
install -m0644 vim-pathogen/autoload/pathogen.vim ~/.vim/autoload/
clean:

1
vim-pathogen Submodule

@ -0,0 +1 @@
Subproject commit f1926ab6731cb1877160ff94d01ea644d257076e

2
vimrc
View File

@ -15,3 +15,5 @@ au BufNewFile,BufRead *.i set ft=swig
au BufNewFile,BufRead *.factor set ft=factor
au BufNewFile,BufRead Gemfile set ft=ruby
au BufReadCmd *.epub call zip#Browse(expand("<amatch>"))
execute pathogen#infect()