Created
July 11, 2012 01:10
-
-
Save nicolasiensen/3087271 to your computer and use it in GitHub Desktop.
My vimrc
This file contains 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 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' | |
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