Skip to content

Instantly share code, notes, and snippets.

@mmcdaris
Created February 23, 2014 05:59
Show Gist options
  • Save mmcdaris/9167636 to your computer and use it in GitHub Desktop.
Save mmcdaris/9167636 to your computer and use it in GitHub Desktop.
simple vimrc for fresh machines
" syntax and line numbers
set nu
syntax on
set ruler
" use vim settings
set nocompatible
" Tab customization
set autoindent
set expandtab
set softtabstop=2
set shiftwidth=2
set tabstop=2
imap <C-Z> <C-Y>,
imap ,, <C-y>,
autocmd BufWritePre * :%s/\s\+$//e
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment