Skip to content

Instantly share code, notes, and snippets.

@ajermakovics
Created May 10, 2020 06:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajermakovics/467f0c3106e6d1dc878aa00467cfdfff to your computer and use it in GitHub Desktop.
Save ajermakovics/467f0c3106e6d1dc878aa00467cfdfff to your computer and use it in GitHub Desktop.
.bashrc
PS1="\W\$ " # working dir
if [[ $EUID -eq 0 ]]; then # root user
PS1="\W\e[1;31m\]\$ \e[0m" # show '$' in red
fi
export PS1
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
export HISTCONTROL=ignoreboth:erasedups
export HISTSIZE=10000
shopt -s histappend
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment