Skip to content

Instantly share code, notes, and snippets.

View BenDavidJamin's full-sized avatar

Benjamin Metzger BenDavidJamin

  • Gensler
  • La Crosse, WI
View GitHub Profile
@BenDavidJamin
BenDavidJamin / .bashrc
Created September 20, 2013 19:24
my bash settings ya they work with git. cool cool cool
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth
@BenDavidJamin
BenDavidJamin / .vimrc
Created September 20, 2013 19:20
My vimrc settings
" Turn on line numbering. Turn it off set "set nonu"
set nu
" Set syntax on
syntax on
" Indent automtically depending on filetype
filetype indent on
set autoindent
set smartindent