Non-conf dotfiles, v1.

This commit is contained in:
David Tomaschik
2014-01-13 23:39:07 -08:00
commit 849e0b329a
16 changed files with 4822 additions and 0 deletions

28
vimrc Normal file
View File

@@ -0,0 +1,28 @@
" Allow full use of vim options
set nocompatible
" Autoindentation
set autoindent
" Use same indentation style as above file
set copyindent
" Proper tabs
set tabstop=2
set softtabstop=2
set shiftwidth=2
set expandtab
" Display cursor position
set ruler
" Syntax highlighting and file types
syntax on
filetype plugin indent on
" Allow file modelines
set modeline
" Automatically re-read changed files
set autoread
" fsync() after writing files
set fsync
" Line numbering
set number
" Round indentation to multiple of shiftwidth
set shiftround
" Text width 80
set textwidth=80