Skip to content

Instantly share code, notes, and snippets.

@Blacksly
Created May 21, 2014 11:38
Show Gist options
  • Save Blacksly/2bceb968ad25f889b5da to your computer and use it in GitHub Desktop.
Save Blacksly/2bceb968ad25f889b5da to your computer and use it in GitHub Desktop.
PS1='${debian_chroot:+($debian_chroot)}\h:\w\$ '
umask 022
export CLICOLOR=1
alias ll='ls -la --color'
alias la='ls -A --color'
alias vi='vim'
alias l='ls -CF'
function cyan_red_prompt
{
local CYAN="\[\033[0;36m\]"
local GRAY="\[\033[0;37m\]"
local RED="\[\033[0;31m\]"
PS1="${CYAN}[\u@\h ${RED}\w${CYAN}]${GRAY} "
}
cyan_red_prompt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment