Skip to content

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
  • Loading branch information
apucacao committed Dec 23, 2013
1 parent f223af1 commit f5b6a65
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
8 changes: 6 additions & 2 deletions bash_profile
Expand Up @@ -22,6 +22,10 @@ export PIP_RESPECT_VIRTUALENV="true"
# haskell
# export PATH="$HOME/.cabal/bin:$PATH"

# java

export JAVA_OPTS="-Djava.awt.headless=true"

if [[ -r /usr/local/bin/virtualenvwrapper.sh ]]; then
source /usr/local/bin/virtualenvwrapper.sh
fi
Expand Down Expand Up @@ -69,8 +73,8 @@ function make-prompt {
local RESET="\[\e[0m\]"
local GRAY="\[\e[0;30m\]"
local PURPLE="\[\e[0;35m\]"
local BLUE="\[\e[1;34m\]"
local YELLOW="\[\e[1;33m\]"
local BLUE="\[\e[0;34m\]"
local YELLOW="\[\e[0;33m\]"
local GREEN="\[\e[0;32m\]"

PS1="${GRAY}\w${RESET}$(virtualenvify)$(gitify)${YELLOW}${RESET} "
Expand Down
9 changes: 2 additions & 7 deletions gitconfig
Expand Up @@ -10,19 +10,14 @@
[push]
default = current
[alias]
a = add
s = status
b = branch
c = commit
cm = commit -m
co = checkout
cob = checkout -b
l = log
ll = log -n 1
sl = shortlog -n
dt = difftool
dt = difftool -y -t Kaleidoscope
[difftool "Kaleidoscope"]
cmd = ksdiff --diff \"$LOCAL\" \"$REMOTE\"
cmd = ksdiff-wrapper git \"$LOCAL\" \"$REMOTE\"
[mergetool "Kaleidoscope"]
cmd = ksdiff --merge --output \"$MERGED\" --base \"$BASE\" -- \"$LOCAL\" --snapshot \"$REMOTE\" --snapshot
[difftool]
Expand Down

0 comments on commit f5b6a65

Please sign in to comment.