aboutsummaryrefslogtreecommitdiffstats
path: root/bash/.bashrc
blob: d2110824634ca530612d62ee417697cbb28d852b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# ~/.bashrc
#

# If not running interactively, don't do anything
[[ $- != *i* ]] && return

alias ls='ls --color=auto'

cd() {
	builtin cd "$@" && ls -A	
}

pacaur() {
	env pacman_program="pacaur" /usr/bin/pacmatic "$@"
}

#PS1='[\u@\h \W]\$ '
PS1='[\d][\t]\u on \h\n\w => '


source liquidprompt
archey