aboutsummaryrefslogtreecommitdiffstats
path: root/bashrc
diff options
context:
space:
mode:
authorGravatar Tom van der Lee <t0m.vd.l33@gmail.com>2015-03-30 10:25:12 +0200
committerGravatar Tom van der Lee <t0m.vd.l33@gmail.com>2015-03-30 10:25:12 +0200
commit8eee1c45bef74aa6094f463f9888ac653958b3dc (patch)
tree0e2a066fd4da4afcf08f0bef348511b5c9ac48f7 /bashrc
parentc7ebce541a9914d4e5a3b52e838e2ac66dd139a0 (diff)
downloaddotfiles-8eee1c45bef74aa6094f463f9888ac653958b3dc.tar.gz
dotfiles-8eee1c45bef74aa6094f463f9888ac653958b3dc.tar.bz2
dotfiles-8eee1c45bef74aa6094f463f9888ac653958b3dc.zip
Moving back to stow for management
reasons: dotfiles.sh misbehaving on freebsd
Diffstat (limited to 'bashrc')
-rw-r--r--bashrc46
1 files changed, 0 insertions, 46 deletions
diff --git a/bashrc b/bashrc
deleted file mode 100644
index 218b1a8..0000000
--- a/bashrc
+++ /dev/null
@@ -1,46 +0,0 @@
1#
2# ~/.bashrc
3#
4
5# If not running interactively, don't do anything
6[[ $- != *i* ]] && return
7
8alias ls='ls --color=auto'
9alias jblive='mpv rtmp://videocdn-us.geocdn.scaleengine.net/jblive/live/jblive.stream 2> /dev/null &'
10
11pacaur() {
12 env pacman_program="pacaur" /usr/bin/pacmatic "$@"
13}
14
15man() {
16 env LESS_TERMCAP_mb=$'\E[01;31m' \
17 LESS_TERMCAP_md=$'\E[01;38;5;74m' \
18 LESS_TERMCAP_me=$'\E[0m' \
19 LESS_TERMCAP_se=$'\E[0m' \
20 LESS_TERMCAP_so=$'\E[38;5;246m' \
21 LESS_TERMCAP_ue=$'\E[0m' \
22 LESS_TERMCAP_us=$'\E[04;38;5;146m' \
23 man "$@"
24}
25
26vim() {
27 if [[ -z $@ ]]; then
28 /usr/bin/vim
29 elif [[ -d $@ ]]; then
30 dir=$(pwd)
31 cd $@ && /usr/bin/vim && cd $dir
32 else
33 /usr/bin/vim $@
34 fi
35}
36
37export PS1='[\d][\t]\u on \h\n\w => '
38export GOPATH="$HOME/programming/go"
39export GEM_HOME="$(ruby -e 'print Gem.user_dir')/bin"
40export PATH="$PATH:$GEM_HOME:$GOPATH/bin"
41export EDITOR="vim"
42
43source liquidprompt
44archey3
45
46# vim: set ts=8 sw=8 tw=0 noet :