Skip to content

Instantly share code, notes, and snippets.

@snarkyboojum
Created December 23, 2012 04:46
Show Gist options
  • Save snarkyboojum/4362010 to your computer and use it in GitHub Desktop.
Save snarkyboojum/4362010 to your computer and use it in GitHub Desktop.
Moja Vim config
" Snarkyboojum's Vim configuration
" Last updated: 24/06/2006
set nocompatible
" turn syntax highlighting on and change tabs to 4 spaces
syntax on
set autoindent
set tabstop=4
set shiftwidth=4
set expandtab
" make the spaces feel like tabs when moving over them
set softtabstop=4
" turn the annoying visual bell off
set novb
" set up search behaviour
set showmatch
set incsearch
set hlsearch
" make command line two lines high
set ch=2
" hide the mouse when typing text
set mousehide
" make backspace behave the way I'd expect it to
set backspace=indent,eol,start
filetype plugin on
" setup font and window size
set guifont=ProggyCleanTT:h12:cANSI
set lines=55
" make it obvious when there are nasty tabs and trailing whitespace in a file
set list listchars=tab:»·,trail:·
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment