forked from boennemann/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.extra
25 lines (19 loc) · 811 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
# --- git configuration --- #
GIT_AUTHOR_NAME="David Pfahler"
GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME"
git config --global user.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 help.autocorrect 1
# visual git log
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)%Creset' --abbrev-commit"
git config --global credential.helper osxkeychain
# --- directory aliases --- #
alias lh="cd ~/localhost"
# --- command aliases ---- #
alias rn="react-native"
# If possible, add tab completion for many more commands
[ -f /etc/bash_completion ] && source /etc/bash_completion
# GPG keys
export GPG_TTY=$(tty)