Skip to content

Instantly share code, notes, and snippets.

@mrdmnd
Created February 12, 2013 07:16
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 mrdmnd/4760746 to your computer and use it in GitHub Desktop.
Save mrdmnd/4760746 to your computer and use it in GitHub Desktop.
My .vimrc
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'tpope/vim-fugitive'
Bundle 'Lokaltog/vim-easymotion'
Bundle 'Valloric/YouCompleteMe'
Bundle 'molokai'
Bundle 'Syntastic'
syntax enable
set t_Co=256
colorscheme molokai
set autoindent
set expandtab
set smarttab
set shiftwidth=2
set softtabstop=2
set mouse=a
set number
set ignorecase
set smartcase
nnoremap <silent> k gk
nnoremap <silent> j gj
map N Nzz
map n nzz
nnoremap ; :
syntax on
filetype plugin indent on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment