Last active
March 17, 2020 00:46
-
-
Save nverba/43a0bfd62e4fb32e1865 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias c='clear; printf %"$COLUMNS"s |tr " " "-"' | |
alias s="c; git status" | |
alias d="c; git diff --color" | |
alias r="reset" | |
alias p="c; git push" | |
alias l="c; git pull" | |
alias g="c; git commit -m 'Generic commit *to be squashed'" | |
alias x="c; git commit -am 'Generic commit *to be squashed'" | |
if [ -f $(brew --prefix)/etc/bash_completion ]; then | |
. $(brew --prefix)/etc/bash_completion | |
fi | |
export PATH=$PATH:$HOME/.local/bin | |
export N_PREFIX=$HOME/.local | |
export HISTCONTROL=ignoreboth:erasedups |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment