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
#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 |
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
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 |