Skip to content

Commit

Permalink
mixlab custom
Browse files Browse the repository at this point in the history
  • Loading branch information
dlikhten committed Sep 27, 2019
1 parent 02cb016 commit ff4721e
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 8 deletions.
5 changes: 5 additions & 0 deletions .bash_alias
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,8 @@ alias clear='echo "use command+k"'
alias cd..='cd ..'
alias rr='touch tmp/restart.txt'
alias gut='git'
alias api='cd ~/developer/src/api'
alias client='cd ~/developer/src/client'
alias practice='cd ~/developer/src/practice'
alias marketing='cd ~/developer/src/marketing'
alias flooffy='cd ~/developer/src/flooffy'
14 changes: 14 additions & 0 deletions .bash_profile
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,17 @@ test -e "${HOME}/.iterm2_shell_integration.bash" && source "${HOME}/.iterm2_shel

# gitql
export DYLD_LIBRARY_PATH=$PWD/libgit2/install/lib

# nvm
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
[[ -s "$HOME/.avn/bin/avn.sh" ]] && source "$HOME/.avn/bin/avn.sh" # load avn

# home bin folder for executables
export PATH="$HOME/developer/bin:$PATH"

#heroku
if [ -f heroku ]; then
heroku autocomplete:script bash;
fi
1 change: 1 addition & 0 deletions .bash_prompt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ function __git_branch {
}

function __my_rvm_ruby_version {
# echo "r "
echo "r`~/.rvm/bin/rvm-prompt v g` "
}

Expand Down
7 changes: 0 additions & 7 deletions .exports
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,6 @@ export EC2_AMITOOL_HOME="/usr/local/Cellar/ec2-ami-tools/1.3-45758/jars"
# path
export PATH=~/Developer/bin:~/Developer/usr/bin:/usr/local/sbin:$PATH

# "faster" rails startup time
export RUBY_HEAP_MIN_SLOTS=1000000
export RUBY_HEAP_SLOTS_INCREMENT=1000000
export RUBY_HEAP_SLOTS_GROWTH_FACTOR=1
export RUBY_GC_MALLOC_LIMIT=100000000
export RUBY_HEAP_FREE_MIN=500000

export JAVA_HOME=$(/usr/libexec/java_home)

export GOPATH=~/.go
Expand Down
3 changes: 2 additions & 1 deletion .gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
wip = !git add -u && git commit -m "WIP"
undo-commit = reset --soft HEAD^
list-ignored = !git ls-files -v | grep \"^[[:lower:]]\"
pull-request = !git push origin && open "https://github.com/DonorsChoose/donorschoose-web/compare/resolved...dlikhten:`git symbolic-ref --short HEAD`"
github-location = "!f() { git remote -v | grep 'origin' | grep '(push)' | sed 's/.*[email protected]://' | sed 's/\\.git.*//'; }; f"
pull-request = !git push origin && open "https://github.com/`git github-location`/compare/develop...`git symbolic-ref --short HEAD`"
p = push origin
pf = push origin --force
pr = pull --rebase dc-master resolved
Expand Down

0 comments on commit ff4721e

Please sign in to comment.