-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexports
42 lines (38 loc) · 875 Bytes
/
exports
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#
# bashrc/exports
#
# dependencies
# setadd
#
######
export PATH=`setadd $HOME/bin $HOME/.npm/packages/bin $PATH`
export LS='ls --color=auto --hide="lost+found"'
export CD='cd'
export CAT='cat'
export EDITOR='vim'
export CP='cp'
export RM='rm'
# red stderr >:)
[[ -f /usr/lib/libstderred.so ]] &&
export LD_PRELOAD=`setadd $LD_PRELOAD /usr/lib/libstderred.so`
red=$'\e[1;31m'
pink=$'\e[1;35m'
purple=$'\e[0;34m'
light=$'\e[0;37m'
green=$'\e[0;32m'
reset=$'\e[0m'
export C_RED=$red
export C_PINK=$pink
export C_LIGHT=$light
export C_BLUE=$blue
export C_STYLE=$purple
export C_GREEN=$green
export C_RESET=$reset
# dependencies
# ok
# whatbranch
# batcolor
# inception
# [danger/time alias]
# /bin/vim
export PS1=$'\[${red}\]`ok`\[${green}\]`whatbranch`\[${pink}\][`time` \u\[`batcolor`\]@\[${pink}\]\h \[${light}\]\w\[${pink}\]]`inception`\[${reset}\]$ '