aboutsummaryrefslogtreecommitdiffstats
path: root/bashrc
diff options
context:
space:
mode:
Diffstat (limited to 'bashrc')
-rw-r--r--bashrc37
1 files changed, 37 insertions, 0 deletions
diff --git a/bashrc b/bashrc
new file mode 100644
index 0000000..36bb569
--- /dev/null
+++ b/bashrc
@@ -0,0 +1,37 @@
1#
2# ~/.bashrc
3#
4
5# If not running interactively, don't do anything
6[[ $- != *i* ]] && return
7
8cd() {
9 builtin cd "$@" && ls -A
10}
11
12pacaur() {
13 env pacman_program="pacaur" /usr/bin/pacmatic "$@"
14}
15
16man() {
17 env LESS_TERMCAP_mb=$'\E[01;31m' \
18 LESS_TERMCAP_md=$'\E[01;38;5;74m' \
19 LESS_TERMCAP_me=$'\E[0m' \
20 LESS_TERMCAP_se=$'\E[0m' \
21 LESS_TERMCAP_so=$'\E[38;5;246m' \
22 LESS_TERMCAP_ue=$'\E[0m' \
23 LESS_TERMCAP_us=$'\E[04;38;5;146m' \
24 man "$@"
25}
26
27alias ls='ls --color=auto'
28alias jblive='vlc rtmp://videocdn-us.geocdn.scaleengine.net/jblive/live/jblive.stream 2> /dev/null &'
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
36source liquidprompt
37archey3