From a791deb60d32a5e2a9e5781e0614e9958b4aadec Mon Sep 17 00:00:00 2001 From: Zubair Khan Date: Tue, 16 Aug 2011 11:10:52 +0100 Subject: [PATCH] Added vundle, and solarized colour scheme, also rails.vim --- .gitignore | 2 ++ .gitmodules | 3 +++ vim/bundle/vundle | 1 + vimrc | 22 ++++++++++++++++++++-- 4 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 .gitmodules create mode 160000 vim/bundle/vundle diff --git a/.gitignore b/.gitignore index c10448d..ceafb89 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ /tags /vim/sessions/ +/vim/bundle/ /vim/.netrwhist +.DS_Store diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..cff08f6 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "vim/bundle/vundle"] + path = vim/bundle/vundle + url = http://github.com/gmarik/vundle.git diff --git a/vim/bundle/vundle b/vim/bundle/vundle new file mode 160000 index 0000000..97d72cf --- /dev/null +++ b/vim/bundle/vundle @@ -0,0 +1 @@ +Subproject commit 97d72cf9545f62b1be7015f5236da4fe96a70148 diff --git a/vimrc b/vimrc index 05e86b2..db2831a 100644 --- a/vimrc +++ b/vimrc @@ -16,12 +16,30 @@ let mapleader = "," highlight CursorLine cterm=bold highlight MatchParen cterm=none ctermbg=none ctermfg=yellow +" Vundle +set rtp+=~/.vim/bundle/vundle/ +call vundle#rc() +Bundle 'gmarik/vundle' +Bundle 'vim-scripts/The-NERD-tree' +Bundle 'vim-scripts/VimClojure' +Bundle 'vim-scripts/AutoClose' +Bundle 'vim-scripts/sessionman.vim' +Bundle 'tpope/vim-fugitive' +Bundle 'tpope/vim-surround' +Bundle 'kchmck/vim-coffee-script' +Bundle 'edsono/vim-matchit' +Bundle 'altercation/vim-colors-solarized' +Bundle 'rails.vim' + +Bundle 'git://git.wincent.com/command-t.git' + + + " Filetypes -call pathogen#runtime_append_all_bundles() -call pathogen#helptags() filetype off " forces reload filetype plugin indent on syntax on +colorscheme solarized " Searching set incsearch hlsearch