Skip to content

Instantly share code, notes, and snippets.

@Blacksly
Created June 11, 2014 07:52

Revisions

  1. Blacksly created this gist Jun 11, 2014.
    23 changes: 23 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,23 @@
    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