Skip to content

Instantly share code, notes, and snippets.

@nicolasiensen
Created May 2, 2013 15:12
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 nicolasiensen/5502898 to your computer and use it in GitHub Desktop.
Save nicolasiensen/5502898 to your computer and use it in GitHub Desktop.
My .vimrc
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'wincent/Command-T.git'
Bundle 'bbommarito/vim-slim.git'
Bundle 'digitaltoad/vim-jade.git'
Bundle 'pangloss/vim-javascript.git'
Bundle 'vim-ruby/vim-ruby.git'
Bundle 'https://github.com/tpope/vim-fugitive.git'
Bundle 'bzx/vim-theme-pack'
Bundle 'helino/vim-json.git'
Bundle 'kien/ctrlp.vim'
Bundle 'kchmck/vim-coffee-script.git'
set tabstop=2
set shiftwidth=2
set expandtab
set incsearch
set smartindent
" load indentation rules and plugins according to the detected filetype.
set nocompatible " VIM extensions, not very VI compatible;
filetype on " enable filetype detection
filetype plugin indent on
filetype plugin on
colorscheme chocolateliquor
set number
if has("gui_macvim")
map <D-t> <plug>CommandT<CR>
endif
let mapleader = ","
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment