Skip to content

Instantly share code, notes, and snippets.

@davidbella
Created October 25, 2013 17:35
Show Gist options
  • Save davidbella/7158661 to your computer and use it in GitHub Desktop.
Save davidbella/7158661 to your computer and use it in GitHub Desktop.
Vim: My .vimrc
set nocompatible
set number
set cursorline
set ruler
set showmatch
set autoindent
set smartindent
set smarttab
set expandtab
set shiftwidth=2
set tabstop=2
set backspace=2
set listchars=tab:>-,trail:.
set list!
set ignorecase
set smartcase
set incsearch
set hlsearch
set ttymouse=xterm2
set mouse=a
set scrolloff=8
set wildmode=longest,list
syntax enable
set background=dark
colorscheme pablo
call pathogen#infect()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment