aboutsummaryrefslogtreecommitdiff
path: root/home/.bashrc
blob: 0a2f914c52941b8718e30ccaad3449d8a616ebb3 (plain) (blame)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/usr/local/bin/bash
#
# FILE  : dotfiles.core/home/.bashrc
# TARGET: ~/.bashrc
# AUTHOR: tgwil
#
# This is the core Bash configuration for all TGWIL accounts on all
# systems. It contains only those configurations which are applicable
# to (almost) every situation. Situational configurations should go
# in their respective situational repositories.


########################################################################
## Test for interactive shell
########################################################################
if [[ $- != *i* ]]; then
	return
fi


########################################################################
## PATH
########################################################################
# ~/bin is used for personal scripts and other executables used only
# by this user.
PATH=$PATH:$HOME/bin


########################################################################
## Bash completion
########################################################################
[[ $PS1 && -f /usr/local/share/bash-completion/bash_completion.sh ]] \
    && source /usr/local/share/bash-completion/bash_completion.sh


########################################################################
## History
########################################################################
# Don't put duplicates or lines starting with spaces in history.
HISTCONTROL=ignoreboth

# Append to history file; don't overwrite
shopt -s histappend

# History size
HISTSIZE=100000      #100K
HISTFILESIZE=1000000 #1M


########################################################################
## Editor
########################################################################
export EDITOR="nano"
if id -nG $USER | grep -qw "sudo" -qw; then export SUDO_EDITOR=$EDITOR; fi

export VISUAL="emacsclient -c"
if id -nG $USER | grep -qw "sudo" -qw; then export SUDO_VISUAL=$VISUAL; fi


########################################################################
## GPG
########################################################################
GPG_TTY=$(tty)
export GPG_TTY


########################################################################
## Load ~/.bash_aliases
########################################################################
if [[ $- == *i* && -f ~/.bash_aliases ]]; then
	. ~/.bash_aliases
fi