Skip to content

Instantly share code, notes, and snippets.

@yuri91
Last active December 28, 2017 21:51
Show Gist options
  • Save yuri91/e4c5eae60db928c9cb8c to your computer and use it in GitHub Desktop.
Save yuri91/e4c5eae60db928c9cb8c to your computer and use it in GitHub Desktop.
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# Enable color and human friendly output.
alias ls='ls -h --color=auto'
alias dir='dir -h --color=auto'
alias vdir='vdir -h --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
#PS1='[\u@\h \W]\$ '
PS1='[\h]\[\e[0;32m\][\D{%T}]\[\e[m\] \[\e[0;31m\]\u\[\e[m\] \[\e[1;34m\]\w\[\e[m\] \[\e[0;31m\]\$ \[\e[m\]\n--->'
export EDITOR='vim'
#personal aliases
alias gping='ping www.google.com'
alias update='yaourt -Syu --aur'
alias rcp='rsync -a --progress --stats'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment