Added vundle bundles

This commit is contained in:
Nick Nisi
2012-12-16 21:19:24 -06:00
parent 3fc8e20f3a
commit 59906a5fbb
3 changed files with 41 additions and 9 deletions

3
.gitmodules vendored
View File

@@ -0,0 +1,3 @@
[submodule "vim/vim.symlink/bundle/vundle"]
path = vim/vim.symlink/bundle/vundle
url = git@github.com:gmarik/vundle.git

View File

@@ -1,10 +1,38 @@
" vim settings
" Pathogen
" loads all plugins places in the ~/.vim/bundle directory
runtime bundle/vim-pathogen/autoload/pathogen.vim
let g:pathogen_disabled=[]
call pathogen#infect()
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" let vundle manage vundle
Bundle 'gmarik/vundle'
" my vim plugins
Bundle 'kien/ctrlp.vim'
Bundle 'scrooloose/nerdtree'
Bundle 'mileszs/ack.vim'
Bundle 'scrooloose/syntastic'
Bundle 'Raimondi/delimitMate'
Bundle 'tpope/vim-commentary'
Bundle 'tpope/vim-endwise'
Bundle 'tpope/vim-fugitive'
Bundle 'othree/html5.vim'
Bundle 'pangloss/vim-javascript'
Bundle 'itspriddle/vim-jquery'
Bundle 'tpope/vim-markdown'
Bundle 'tsaleh/vim-matchit'
Bundle 'juvenn/mustache.vim'
Bundle 'mmalecki/vim-node.js'
Bundle 'Lokaltog/vim-powerline'
Bundle 'tpope/vim-ragtag'
Bundle 'tpope/vim-surround'
Bundle 'sjl/vitality.vim'
Bundle 'duff/vim-scratch'
Bundle 'cakebaker/scss-syntax.vim'
Bundle 'kchmck/vim-coffee-script'
filetype plugin indent on
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => General
@@ -103,10 +131,10 @@ set showmatch " show matching braces
set mat=2 " how many tenths of a second to blink
" switch to line when editing and block when not
let cursor_to_bar = "\<Esc>]50;CursorShape=1\x7"
let cursor_to_block = "\<Esc>]50;CursorShape=0\x7"
let &t_SI = cursor_to_bar
let &t_EI = cursor_to_block
" let cursor_to_bar = "\<Esc>]50;CursorShape=1\x7"
" let cursor_to_block = "\<Esc>]50;CursorShape=0\x7"
" let &t_SI = cursor_to_bar
" let &t_EI = cursor_to_block
" error bells
set noerrorbells