Mercurial > repos > other > linux
comparison bashrc @ 20:ea572e660598
Fix Thunderbird dates and add more comments
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 16 Nov 2014 20:12:36 +0000 |
parents | 170de0d0d6dd |
children | acbc487533ab |
comparison
equal
deleted
inserted
replaced
19:170de0d0d6dd | 20:ea572e660598 |
---|---|
5 # Use bash-completion, if available | 5 # Use bash-completion, if available |
6 if [ -f /etc/bash_completion ]; then | 6 if [ -f /etc/bash_completion ]; then |
7 . /etc/bash_completion | 7 . /etc/bash_completion |
8 fi | 8 fi |
9 | 9 |
10 # Use a sane editor | |
10 export EDITOR=/usr/bin/nano | 11 export EDITOR=/usr/bin/nano |
11 test -s ~/.alias && . ~/.alias || true | 12 test -s ~/.alias && . ~/.alias || true |
13 | |
14 # Add sbins to path to make life easier (e.g. /sbin/ifconfig) | |
12 export PATH=/sbin:/usr/sbin:/usr/local/sbin:$PATH | 15 export PATH=/sbin:/usr/sbin:/usr/local/sbin:$PATH |
16 | |
17 #Disable man page number prompts - where there's more than one, we normally want the default (user command) version | |
13 export MAN_POSIXLY_CORRECT=1 | 18 export MAN_POSIXLY_CORRECT=1 |
19 | |
20 #Make sure that Thunderbird et al show correct dates | |
21 export LC_TIME=en_GB.UTF-8 | |
14 | 22 |
15 #Disable less history, because do I really search the same things enough to use it across sessions? | 23 #Disable less history, because do I really search the same things enough to use it across sessions? |
16 export LESSHISTFILE=- | 24 export LESSHISTFILE=- |
17 | 25 |
18 if [ "$PS1" != "" -a "${STARTED_TMUX:-x}" = x -a "${SSH_TTY:-x}" != x ] | 26 if [ "$PS1" != "" -a "${STARTED_TMUX:-x}" = x -a "${SSH_TTY:-x}" != x ] |