Initial commit.

This commit is contained in:
Andrew Tomaka 2012-04-05 05:39:31 -04:00
commit f35cf3d8f8
5 changed files with 53 additions and 0 deletions

2
.bash_profile Executable file
View file

@ -0,0 +1,2 @@
source ~/.bashrc
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*

14
.bashrc Executable file
View file

@ -0,0 +1,14 @@
# Common parameters
alias ls='ls -lav --color=auto'
alias grep='grep --color'
# editor
alias sublime='nohup /cygdrive/c/Program\ Files/Sublime\ Text\ 2/sublime_text.exe > /dev/null'
# clear the screen
#alias cls='echo -n ^[[2J'
# Case insensitive matching
shopt -s nocaseglob
PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting

27
.gitconfig Normal file
View file

@ -0,0 +1,27 @@
[user]
name = Andrew Tomaka
email = atomaka@gmail.com
[color]
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta
old = red
new = green
[color "status"]
added = yellow
changed = green
untracked = cyan
[merge]
tool = sublime
[apply]
whitespace = fix
[core]
excludesfile = ~/.gitignore_global
autocrlf = input
editor = sublime
filemode = false

4
.gitignore_global Executable file
View file

@ -0,0 +1,4 @@
*.sw?
*.o
*.exe
*.stackdump

6
.inputrc Executable file
View file

@ -0,0 +1,6 @@
##### via dpatti ########
# Vim-like tab completion
set completion-ignore-case On
TAB: menu-complete
# Bind Shift-Tab to reverse
"\e[Z": "\e-1\C-i"