forked from mathiasbynens/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.extra
26 lines (21 loc) · 739 Bytes
/
.extra
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Git credentials
GIT_AUTHOR_NAME="Mike Goldsmth"
GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME"
GIT_AUTHOR_EMAIL="[email protected]"
GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL"
git config --global user.email "$GIT_AUTHOR_EMAIL"
git config --global user.username "MikeGoldsmith"
git config --global user.name "$GIT_AUTHOR_NAME"
git config --global user.signingkey CD5FFA13DC0A17F0
# homebrew sbin
export PATH="/usr/local/sbin:$PATH"
# stop OSX telling me to change shells
export BASH_SILENCE_DEPRECATION_WARNING=1
# pyenv setup
eval "$(pyenv init -)"
# sdkman
source "$HOME/.sdkman/bin/sdkman-init.sh"
# custom alias
alias dev="cd ~/Documents/code"
alias hny="cd ~/Documents/code/honeycombio"
alias otel="cd ~/Documents/code/opentelemetry"