Skip to content

Commit

Permalink
Added vundle, and solarized colour scheme, also rails.vim
Browse files Browse the repository at this point in the history
  • Loading branch information
zkhan committed Aug 16, 2011
1 parent 8d902c8 commit a791deb
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -1,3 +1,5 @@
/tags
/vim/sessions/
/vim/bundle/
/vim/.netrwhist
.DS_Store
3 changes: 3 additions & 0 deletions .gitmodules
@@ -0,0 +1,3 @@
[submodule "vim/bundle/vundle"]
path = vim/bundle/vundle
url = http://github.com/gmarik/vundle.git
1 change: 1 addition & 0 deletions vim/bundle/vundle
Submodule vundle added at 97d72c
22 changes: 20 additions & 2 deletions vimrc
Expand Up @@ -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
Expand Down

0 comments on commit a791deb

Please sign in to comment.