Skip to content

Instantly share code, notes, and snippets.

@drewcassidy
Created March 6, 2014 04:22
Show Gist options
  • Save drewcassidy/9382626 to your computer and use it in GitHub Desktop.
Save drewcassidy/9382626 to your computer and use it in GitHub Desktop.
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
filetype plugin indent on " required
"
" Brief help
" :BundleList - list configured bundles
" :BundleInstall(!) - install (update) bundles
" :BundleSearch(!) foo - search (or refresh cache first) for foo
" :BundleClean(!) - confirm (or auto-approve) removal of unused bundles
"
" see :h vundle for more details or wiki for FAQ
" NOTE: comments after Bundle commands are not allowed.
Bundle 'mattn/webapi-vim'
Bundle 'matt/gist-vim'
Bundle 'altercation/vim-colors-solarized'
syntax enable
set background=dark
colorscheme solarized
nnoremap <space> <Esc>:
inoremap <space><space> <esc>
inoremap jk<silent> <Esc>
map <Left> <nop>
map <Right> <nop>
map <Up> <nop>
map <Down> <nop>
set number
au WinLeave * set nocursorline nocursorcolumn
au WinEnter * set cursorline cursorcolumn
set cursorline cursorcolumn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment