Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View BLTuckerDev's full-sized avatar

Brett Tucker BLTuckerDev

View GitHub Profile
@BLTuckerDev
BLTuckerDev / vimrc
Last active October 18, 2015 21:41
filetype indent plugin on
set tabstop=4 " number of visual spaces per TAB
set softtabstop=4 " number of spaces in tab when editing
set expandtab " tabs are spaces
#These rules are taken from this post:
#http://chris.beams.io/posts/git-commit/
#
#Subject line less than 50 characters
#Separate subject line from the body of the commit with a blank line.
#Capitalize the subject line and do not use punctuation
#Subject line should be in the imperative style
#If applied, this commit will <your commit subject line goes here>
#Examples:
# If applied, this commit will refactor subsystem X for readability