aboutsummaryrefslogtreecommitdiffstats
path: root/bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash')
-rw-r--r--bash/.bashrc14
1 files changed, 8 insertions, 6 deletions
diff --git a/bash/.bashrc b/bash/.bashrc
index 4513c25..36bb569 100644
--- a/bash/.bashrc
+++ b/bash/.bashrc
@@ -5,8 +5,6 @@
5# If not running interactively, don't do anything 5# If not running interactively, don't do anything
6[[ $- != *i* ]] && return 6[[ $- != *i* ]] && return
7 7
8alias ls='ls --color=auto'
9
10cd() { 8cd() {
11 builtin cd "$@" && ls -A 9 builtin cd "$@" && ls -A
12} 10}
@@ -26,10 +24,14 @@ man() {
26 man "$@" 24 man "$@"
27} 25}
28 26
29#PS1='[\u@\h \W]\$ ' 27alias ls='ls --color=auto'
30PS1='[\d][\t]\u on \h\n\w => '
31
32alias jblive='vlc rtmp://videocdn-us.geocdn.scaleengine.net/jblive/live/jblive.stream 2> /dev/null &' 28alias jblive='vlc rtmp://videocdn-us.geocdn.scaleengine.net/jblive/live/jblive.stream 2> /dev/null &'
33 29
30
31export PS1='[\d][\t]\u on \h\n\w => '
32export GOPATH="$HOME/programming/go"
33export PATH="$PATH:$GOPATH/bin"
34export EDITOR="vim"
35
34source liquidprompt 36source liquidprompt
35archey 37archey3