dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit cc58ecc93f37ede5e90d72feab03a902ccb53cc0
parent 97809f0efa0b45c9517aca78ee1b1c1b3a38fa95
Author: Chris Bracken <chris@bracken.jp>
Date:   Fri, 31 Oct 2014 16:48:51 -0700

Update Vundle config. Add to Makefile.

Diffstat:
M.vim/Makefile | 4++++
M.vim/vimrc | 21+++++++++++----------
2 files changed, 15 insertions(+), 10 deletions(-)

diff --git a/.vim/Makefile b/.vim/Makefile @@ -1,3 +1,7 @@ # shells install: ln -s src/cfg/vim ~/.vim + +vundle: + mkdir -p bundle + git clone https://github.com/gmarik/Vundle.vim.git bundle/Vundle.vim diff --git a/.vim/vimrc b/.vim/vimrc @@ -2,16 +2,17 @@ set nocompatible set encoding=utf-8 filetype off -set rtp+=~/.vim/bundle/vundle -call vundle#rc() -Bundle 'Lucius' -Bundle 'Dart' -Bundle 'fugitive.vim' -Bundle 'gmarik/vundle' -Bundle 'Blackrush/vim-gocode' -Bundle 'git://github.com/scala/scala-dist.git', {'rtp': 'tool-support/src/vim'} -Bundle 'The-NERD-tree' -Bundle 'spacehi.vim' +set rtp+=~/.vim/bundle/Vundle.vim +call vundle#begin() +Plugin 'gmarik/Vundle.vim' +Plugin 'Lucius' +Plugin 'Dart' +Plugin 'fugitive.vim' +Plugin 'Blackrush/vim-gocode' +Plugin 'git://github.com/scala/scala-dist.git', {'rtp': 'tool-support/src/vim'} +Plugin 'The-NERD-tree' +Plugin 'spacehi.vim' +call vundle#end() filetype plugin indent on let mapleader=','