Skip to content

Instantly share code, notes, and snippets.

@TRManderson
Created January 28, 2015 07:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TRManderson/9249f3c761671a547ab7 to your computer and use it in GitHub Desktop.
Save TRManderson/9249f3c761671a547ab7 to your computer and use it in GitHub Desktop.
.vimrc
set nocompatible
filetype off
set hidden
set wildmenu
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
"Bundle 'powerline/powerline', {'rtp': 'powerline/bindings/vim/'}
Bundle 'scrooloose/nerdtree'
Plugin 'bling/vim-airline'
Plugin 'tpope/vim-fugitive'
call vundle#end()
filetype plugin indent on
set backup
set backupdir=~/.vim/backup
set directory=~/.vim/tmp
set autoindent
set showmatch
set tabstop=4
set shiftwidth=2
set smarttab
filetype plugin on
filetype indent on
set encoding=utf-8
set t_Co=256
let g:airline_powerline_fonts=1
"let g:Powerline_symbols = 'fancy'
colorscheme molokai
set autoread
set laststatus=2
nmap <leader>n :NERDTreeToggle<CR>
let NERDTreeHighlightCursorline=1
let NERDTreeIgnore = ['tmp', '.yardoc', 'pkg']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment