vim

vim config files
git clone https://git.bracken.jp/vim.git
Log | Files | Refs | LICENSE

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

Update Vundle config. Add to Makefile.

Diffstat:
MMakefile | 4++++
Mvimrc | 21+++++++++++----------
2 files changed, 15 insertions(+), 10 deletions(-)

diff --git a/Makefile b/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/vimrc b/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=','