Skip to content

Instantly share code, notes, and snippets.

@rohshall
Last active March 9, 2022 19:10
Show Gist options
  • Save rohshall/b2d7c47002325e02bc418266ef2ecd21 to your computer and use it in GitHub Desktop.
Save rohshall/b2d7c47002325e02bc418266ef2ecd21 to your computer and use it in GitHub Desktop.
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
# User specific aliases and functions
. /usr/share/git-core/contrib/completion/git-prompt.sh
# For ubuntu, get it from https://github.com/git/git/blob/master/contrib/completion/git-prompt.sh
# and put it in ~/.git-prompt.sh, and source it
export GIT_PS1_SHOWDIRTYSTATE=1
export GIT_PS1_SHOWUNTRACKEDFILES=1
export GIT_PS1_SHOWCOLORHINTS=1
export PS1='\[\e[1;32m\]\u\[\e[0;39m\]@\[\e[1;36m\]\h\[\e[0;39m\]:\[\e[1;33m\]\w\[\e[0;39m\]\[\e[1;35m\]$(__git_ps1 " (%s)")\[\e[0;39m\] $ '
export PATH=/usr/local/bin:$PATH
export MOZ_ENABLE_WAYLAND=1
export GTK_THEME=Adwaita:dark
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment