Skip to content

Instantly share code, notes, and snippets.

@grafluxe
Created August 23, 2017 00:14
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 grafluxe/0cbb0ef51151dc47ff04b4bc4f6cce3b to your computer and use it in GitHub Desktop.
Save grafluxe/0cbb0ef51151dc47ff04b4bc4f6cce3b to your computer and use it in GitHub Desktop.
export CLICOLOR=1
export LSCOLORS=dxfxcxdxbxegedAbAgacdx
export PATH="/usr/local/bin:$PATH"
cyan="$(tput setaf 6)";
reset="$(tput sgr0)";
PS1='\[$cyan\]> \W \$ \[$reset\]';
if [ -f ~/.git-completion.bash ]; then
source ~/.git-completion.bash;
fi
if [ -f ~/.git-prompt.sh ]; then
source ~/.git-prompt.sh;
PS1='\[$cyan\]> \W $(__git_ps1 "(%s) ")\$ \[$reset\]';
fi
if [ -f ~/.to/to.sh ]; then
source ~/.to/to.sh;
source ~/.to/to-completion.sh;
fi
alias lh="python -m SimpleHTTPServer";
@grafluxe
Copy link
Author

grafluxe commented Aug 23, 2017

@grafluxe
Copy link
Author

Note that these color settings work best when using a dark theme (i.e. Terminal's "Pro" profile/theme).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment