Skip to content

Instantly share code, notes, and snippets.

@matthewrkula
Created March 2, 2015 17:14
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 matthewrkula/0de20d5cf6c66cf82bd0 to your computer and use it in GitHub Desktop.
Save matthewrkula/0de20d5cf6c66cf82bd0 to your computer and use it in GitHub Desktop.
vimrc
syntax enable
colorscheme murphy
set expandtab
set tabstop=4
set softtabstop=4
set shiftwidth=4
let mapleader = "\<Space>"
" VUNDLE START
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
" plugin on GitHub repo
Plugin 'kien/ctrlp.vim'
Plugin 'Lokaltog/vim-easymotion'
Plugin 'altercation/vim-colors-solarized'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" VUNDLE END
au! BufRead,BufNewFile *.json set filetype=javascript
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment