vimrc: Set modelines=0 to avoid security issues
[cmccabe-etc] / .bashrc
1 # .bashrc
2
3 if [ "x$BASH_VERSION" = "x" ]; then
4         :
5 else
6 # Source global definitions
7 if [ -f /etc/bashrc ]; then
8         . /etc/bashrc
9 fi
10
11 if [ -f ~/.bashrc-local ]; then
12         . ~/.bashrc-local
13 fi
14
15 xlock2() {
16         ps aux | grep -v grep | grep xscreensaver > /dev/null
17         if [ $? -ne 0 ]; then
18                 echo "starting xscreensaver..."
19                 xscreensaver &
20         fi
21         until xscreensaver-command -lock; do
22                 sleep 1
23         done
24 }
25
26 case $- in
27 *i*)
28         # interactive shell
29         ls --color /tmp &>/dev/null && alias ls='ls --color=auto'
30         alias mv='mv -i'
31         alias vim='vim -X'
32         alias vi='vim -X'
33         alias wget='wget --user-agent="Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"'
34         alias grep='grep --color=tty -d skip'
35         alias bterm='xterm -fn "-adobe-courier-bold-r-normal--34-240-100-100-m-200-iso8859-1" -geometry 60x30-50-50'
36         alias mplayer="mplayer -fs -ac a52,"
37         alias rot13="tr '[A-Za-z]' '[N-ZA-Mn-za-m]'"
38         export PATH="${HOME}/cmccabe-bin:${PATH}"
39     [ -d "${HOME}/cmccabe-hbin" ] && export PATH="${PATH}:${HOME}/cmccabe-hbin"
40         export EDITOR="/usr/bin/vim -X"
41         export CSCOPE_EDITOR="${EDITOR}"
42         ;;
43 *)
44         # non-interactive shell
45         ;;
46 esac
47
48 if [ -f "${JAVA_HOME}" ]; then
49         :
50 else
51         export PATH="${PATH}:${JAVA_HOME}/bin"
52
53         # Maven always needs more memory than the default.
54         export MAVEN_OPTS="-Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m"
55 fi
56 # Perturb malloc so that we spot bugs quicker!
57 export MALLOC_PERTURB_=$(($RANDOM % 255 + 1))
58
59 # Do not add lines that begin with a space to the history
60 export HISTIGNORE="[ ]*"
61
62 # Append history list of current session to HISTFILE
63 shopt -s histappend
64 fi