Created
February 23, 2014 05:59
-
-
Save mmcdaris/9167636 to your computer and use it in GitHub Desktop.
simple vimrc for fresh machines
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
" 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