Skip to content

Instantly share code, notes, and snippets.

@Blacksly
Created June 11, 2014 07:52
Show Gist options
  • Save Blacksly/dd2e19976a65261d615e to your computer and use it in GitHub Desktop.
Save Blacksly/dd2e19976a65261d615e to your computer and use it in GitHub Desktop.
bashrc
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