Last active
August 29, 2015 14:18
-
-
Save creimers/b3ee408bd48b6182bd9e to your computer and use it in GitHub Desktop.
minimal .vimrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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