]> code.delx.au - dotfiles/blob - .bash/environment
bash: history with timestamps, larger history
[dotfiles] / .bash / environment
1 #! bash
2
3 # This file sets up the environment correctly. It gets run for every shell,
4 # so it must be fast. Also, starting a shell within a shell shouldn't change
5 # the environment. The path manipulation functions are useful for this.
6
7 # Root gets the default umask. Files created by my user are only rwx by user/group
8 if [ "$(id -un)" = "root" ]; then
9 umask 0022
10 else
11 umask 0007
12 fi
13
14 # General environment settings
15 export PAGER="less"
16 export EDITOR="vim"
17 export CVS_RSH="ssh"
18 export RSYNC_RSH="ssh"
19 export PYTHONSTARTUP="${HOME}/.pythonrc.py"
20 export EMAIL="James Bunton <jamesbunton@delx.net.au>"
21
22 # Expand any symbolic links in the TMPDIR environment variable
23 [ -n "$TMPDIR" ] && export TMPDIR="$(cd "${TMPDIR}" && pwd -P)"
24
25 # Load the bash functions
26 source "${HOME}/.bash/functions"
27
28 # The current directory shouldn't be in the path
29 pathremove .
30
31 # Load local environment settings
32 [ -r "${HOME}/.bash/environment_local" ] && source "${HOME}/.bash/environment_local"
33
34 # ~/bin should be in the front of path if it exists
35 pathprepend "${HOME}/bin"
36