Skip to content

Instantly share code, notes, and snippets.

@duguying
Created May 14, 2014 13:47
Show Gist options
  • Save duguying/de1b398b5667a948a0df to your computer and use it in GitHub Desktop.
Save duguying/de1b398b5667a948a0df to your computer and use it in GitHub Desktop.
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'AutoComplPop'
Bundle 'The-NERD-tree'
Bundle 'molokai'
Bundle 'Align'
set tabstop=4
set softtabstop=4
set shiftwidth=4
set autoindent
set cindent
set nu
set mouse=a
set hlsearch
set backspace=2
set t_Co=256
colorscheme molokai
syntax on
map <F3> :NERDTreeMirror<CR>
map <F3> :NERDTreeToggle<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment