From 151737ea878487ee99299c62100a96e4cfb73005 Mon Sep 17 00:00:00 2001 From: Scott Wallace Date: Tue, 11 Nov 2014 20:56:27 +0000 Subject: [PATCH] .vimrc with airline, fugitive, codeschool color scheme and syntastic. --- .vimrc | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .vimrc diff --git a/.vimrc b/.vimrc new file mode 100644 index 0000000..0d39266 --- /dev/null +++ b/.vimrc @@ -0,0 +1,31 @@ +set nocompatible " be iMproved, required +filetype off " required + +" set the runtime path to include Vundle and initialize +set rtp+=~/.vim/bundle/Vundle.vim +call vundle#begin() + +Plugin 'tpope/vim-fugitive' +Plugin 'scrooloose/syntastic' +Plugin 'bling/vim-airline' +Plugin '29decibel/codeschool-vim-theme' + +" All of your Plugins must be added before the following line +call vundle#end() " required +filetype plugin indent on " required +" To ignore plugin indent changes, instead use: +"filetype plugin on + +colorscheme codeschool + +" Airline +set laststatus=2 + +set tabstop=4 +set shiftwidth=4 +set softtabstop=4 +set smarttab +set expandtab +set mouse=a + +syntax on