Created
June 11, 2014 07:52
Revisions
-
Blacksly created this gist
Jun 11, 2014 .There are no files selected for viewing
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 charactersOriginal 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