Skip to content

Instantly share code, notes, and snippets.

@fatihturan
Last active March 17, 2017 08:49
Show Gist options
  • Save fatihturan/33eef726238821ad5dd1 to your computer and use it in GitHub Desktop.
Save fatihturan/33eef726238821ad5dd1 to your computer and use it in GitHub Desktop.
Bash .profile File
#PS1=" 💎 \W"
export PS1="\[\e[1;32m\]\h:\[\e[m\]\[\e[0;34m\]\W\[\e[m\] \[\e[1;33m\]\u\[\e[m\]\[\e[0;33m\]\$\[\e[m\] "
# export PS1="\h →"
# export PS1="\[\e[0:35m⌘\e[m \e[0:36m\w/\e[m \e[0:33m`git branch 2> /dev/null | grep -e ^* | sed -E s/^\\\\\*\ \(.+\)$/\(\\\\\1\)\ /`\e[m\]"
alias ..='cd ..'
alias ...='cd ../..'
alias cd..='cd ..'
alias ll='ls -alF'
alias la='ls -lah'
alias l='ls -l'
alias ls='ls $LS_OPTIONS'
alias ls-l='ls -l'
alias cl='clear'
alias glog="git log --format='%Cgreen%h%Creset %C(cyan)%an%Creset - %s' --graph"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment