From 753fe17d52484d0e3bb944e284046123d506845c Mon Sep 17 00:00:00 2001 From: Tom van der Lee Date: Tue, 3 Feb 2015 21:12:38 +0100 Subject: Added more plugins --- .gitmodules | 6 ++++++ vim/.vim/bundle/snipmate.vim | 1 + vim/.vim/bundle/supertab | 1 + vim/.vimrc | 4 ++++ 4 files changed, 12 insertions(+) create mode 160000 vim/.vim/bundle/snipmate.vim create mode 160000 vim/.vim/bundle/supertab diff --git a/.gitmodules b/.gitmodules index c03842c..8dc0669 100644 --- a/.gitmodules +++ b/.gitmodules @@ -4,3 +4,9 @@ [submodule "vim/.vim/bundle/nerdtree"] path = vim/.vim/bundle/nerdtree url = git@github.com:scrooloose/nerdtree.git +[submodule "vim/.vim/bundle/supertab"] + path = vim/.vim/bundle/supertab + url = git@github.com:ervandew/supertab.git +[submodule "vim/.vim/bundle/snipmate.vim"] + path = vim/.vim/bundle/snipmate.vim + url = git@github.com:msanders/snipmate.vim.git diff --git a/vim/.vim/bundle/snipmate.vim b/vim/.vim/bundle/snipmate.vim new file mode 160000 index 0000000..f5a75d0 --- /dev/null +++ b/vim/.vim/bundle/snipmate.vim @@ -0,0 +1 @@ +Subproject commit f5a75d075d3c005ebe69e3f5e56cf99516e8aa3b diff --git a/vim/.vim/bundle/supertab b/vim/.vim/bundle/supertab new file mode 160000 index 0000000..454c06e --- /dev/null +++ b/vim/.vim/bundle/supertab @@ -0,0 +1 @@ +Subproject commit 454c06e25680799b6f408622d6bfbaf920ace825 diff --git a/vim/.vimrc b/vim/.vimrc index c0c3fec..5608ff2 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -2,8 +2,12 @@ execute pathogen#infect() syntax on filetype plugin indent on + set number set background=dark +set hlsearch +set listchars=trail:·,tab:▸\ ,eol:¬ +set list autocmd StdinReadPre * let s:std_in=1 autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif -- cgit v1.2.3