Last active
April 27, 2021 15:50
-
-
Save poemdexter/6d497036c61369bf47f3320b43939ea9 to your computer and use it in GitHub Desktop.
bash profile for osx
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
# aliases | |
alias ll='ls -al' | |
alias g='./gradlew' | |
alias check8080='lsof -i -n -P | grep TCP | grep 8080' | |
# lol osx | |
export BASH_SILENCE_DEPRECATION_WARNING=1 | |
# colors plz | |
set TERM xterm-256color; export TERM | |
# sick terminal with path and git branch info | |
export PS1='\n|\[\033[92m\] \w\[\033[35m\]$(__git_ps1 " (%s)")\[\033[0m\]\n| => ' | |
export PS2='| => ' | |
# colors plz | |
export CLICOLOR=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment