Created
May 21, 2014 11:38
-
-
Save Blacksly/2bceb968ad25f889b5da to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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