From f35cf3d8f89216acac5f1af91890ff99025376b7 Mon Sep 17 00:00:00 2001 From: Andrew Tomaka Date: Thu, 5 Apr 2012 05:39:31 -0400 Subject: [PATCH] Initial commit. --- .bash_profile | 2 ++ .bashrc | 14 ++++++++++++++ .gitconfig | 27 +++++++++++++++++++++++++++ .gitignore_global | 4 ++++ .inputrc | 6 ++++++ 5 files changed, 53 insertions(+) create mode 100755 .bash_profile create mode 100755 .bashrc create mode 100644 .gitconfig create mode 100755 .gitignore_global create mode 100755 .inputrc diff --git a/.bash_profile b/.bash_profile new file mode 100755 index 0000000..c3c9caa --- /dev/null +++ b/.bash_profile @@ -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* diff --git a/.bashrc b/.bashrc new file mode 100755 index 0000000..abee998 --- /dev/null +++ b/.bashrc @@ -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 diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..d5885b9 --- /dev/null +++ b/.gitconfig @@ -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 \ No newline at end of file diff --git a/.gitignore_global b/.gitignore_global new file mode 100755 index 0000000..406e92e --- /dev/null +++ b/.gitignore_global @@ -0,0 +1,4 @@ +*.sw? +*.o +*.exe +*.stackdump \ No newline at end of file diff --git a/.inputrc b/.inputrc new file mode 100755 index 0000000..60168e0 --- /dev/null +++ b/.inputrc @@ -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" \ No newline at end of file