Skip to content

Instantly share code, notes, and snippets.

@creimers
Last active August 29, 2015 14:18
Show Gist options
  • Save creimers/b3ee408bd48b6182bd9e to your computer and use it in GitHub Desktop.
Save creimers/b3ee408bd48b6182bd9e to your computer and use it in GitHub Desktop.
minimal .vimrc
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 'gmarik/Vundle.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'scrooloose/nerdtree'
call vundle#end() " required
filetype plugin indent on " required
set number
set hlsearch
set incsearch
let mapleader = ","
nmap <leader>ne :NERDTree<cr>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment