Created
February 12, 2013 07:16
-
-
Save mrdmnd/4760746 to your computer and use it in GitHub Desktop.
My .vimrc
This file contains hidden or 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 | |
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