Skip to content

Instantly share code, notes, and snippets.

View pavsidhu's full-sized avatar
๐Ÿง

Pav Sidhu pavsidhu

๐Ÿง
View GitHub Profile
@pavsidhu
pavsidhu / .bash_profile
Last active February 1, 2018 16:15
My personal .bash_profile
# Change Bash's autocomplete to be case insenstive
bind "set completion-ignore-case on"
# Fancy PS1
expressions=("๐Ÿ‘‰" "๐Ÿ™" "๐Ÿผ" "๐ŸŽ‰" "๐Ÿ†" "๐Ÿ‘พ" "๐ŸŒ" "๐Ÿ—๏ธ" "๐Ÿ—ฝ" "๐ŸŒš" "๐Ÿ”ฅ" "๐Ÿ’ป" "๐Ÿ’ฐ" "โœ๏ธ" "๐Ÿ“Œ")
selectedexpression=${expressions[$RANDOM % ${#expressions[@]} ]}
export PS1="\e[38;5;208m$(echo $selectedexpression) PavSidhu:\W > \[$(tput sgr0)\]\[$(tput sgr0)\]"
# Git Aliases
alias g="git"