]> git.wh0rd.org - home.git/blame - .bashrc
cros-board: update
[home.git] / .bashrc
CommitLineData
02c5d508
MF
1umask 0022
2
96ad5ec3 3for sh in ~/.profile.d/{.pre,*}.sh ; do
5b61754d
MF
4 . "$sh"
5done
42d12df4 6unset sh
5b61754d 7
5b76b1e6 8path_prepend /sbin /usr/sbin /usr/games/bin /usr/lib*/ccache /usr/lib*/ccache/*/ ~/.bin ~/.local/bin ~/.cargo/bin
96ad5ec3
MF
9
10. ~/.profile.d/.post.sh
5b61754d 11
5d0789fb
MF
12#s=$'\001' e=$'\002'
13#export JTAG_PROMPT=$s'\e[30;1m\e[34;1m'$e'jtag'$s'\e[30;1m'$e'>'$s'\e[0m'$e' '
14#unset s e
8f554e2b 15
5d0789fb
MF
16#export ECHANGELOG_USER="Mike Frysinger <vapier@gentoo.org>"
17#export GCC_BOUNDS_OPTS=-no-message
d13a0ae7 18export HISTCONTROL=ignoreboth
df244c91 19export HISTFILESIZE=30000
1afdf944
MF
20export HISTSIZE=${HISTFILESIZE}
21export LESS="-R --tabs=4 -M -#10"
22export LESSCOLOR=0
46fd861a 23unset LDPATH # KDE bs
5b61754d 24
d13a0ae7 25shopt -s checkwinsize
ca258201 26shopt -s no_empty_cmd_completion
d13a0ae7 27
ecf3d4af 28[ "${LS_COLORS:+set}" = "set" ] || eval "$(dircolors 2>/dev/null)"
5b61754d
MF
29
30[ -r /usr/local/src/blackfin/bin/bfin-alias ] && . /usr/local/src/blackfin/bin/bfin-alias
3290ed02 31[ -r /usr/local/src/blackfin/git/toolchain/distribution/snapshots/bfin-alias ] && . /usr/local/src/blackfin/git/toolchain/distribution/snapshots/bfin-alias
5b61754d 32
b788f9f5 33ulimit -c $(( 512 * 1024 )) # units of KiB
d013554e 34# Chrome creates a shit ton of procs/threads now.
058dcf52 35ulimit -u $(( 1000 * $(getconf _NPROCESSORS_CONF 2>/dev/null || echo 1) )) 2>/dev/null