summaryrefslogtreecommitdiff
path: root/.bash_profile
blob: 47aae0f93f8daf7fbe00f39ac8c4473495414138 (plain)
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
# /etc/skel/.bash_profile 
 
# This file is sourced by bash for login shells.  The following line 
# runs your .bashrc and is recommended by the bash info pages. 
[[ -f ~/.bashrc ]] && . ~/.bashrc
 
EDITOR=vi
export EDITOR
 
source ~/perl5/perlbrew/etc/bashrc
export PATH="${HOME}/bin:${PATH}"
export GPG_TTY="$(tty)"
 
eval "$(keychain --eval --noask --inherit any-once id_rsa id_nap_rsa 75193F88 D7A5DBBE)"
 
function e() {
    emacsclient "$@"
}
 
function se() {
    emacsclient "${@/#//sudo::}"
}
 
fortune