aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--home/.bashrc30
1 files changed, 15 insertions, 15 deletions
diff --git a/home/.bashrc b/home/.bashrc
index 78ac39a..0a2f914 100644
--- a/home/.bashrc
+++ b/home/.bashrc
@@ -19,14 +19,6 @@ fi
19 19
20 20
21######################################################################## 21########################################################################
22## Load ~/.bash_aliases
23########################################################################
24if [[ $- == *i* && -f ~/.bash_aliases ]]; then
25 . ~/.bash_aliases
26fi
27
28
29########################################################################
30## PATH 22## PATH
31######################################################################## 23########################################################################
32# ~/bin is used for personal scripts and other executables used only 24# ~/bin is used for personal scripts and other executables used only
@@ -35,13 +27,6 @@ PATH=$PATH:$HOME/bin
35 27
36 28
37######################################################################## 29########################################################################
38## GPG
39########################################################################
40GPG_TTY=$(tty)
41export GPG_TTY
42
43
44########################################################################
45## Bash completion 30## Bash completion
46######################################################################## 31########################################################################
47[[ $PS1 && -f /usr/local/share/bash-completion/bash_completion.sh ]] \ 32[[ $PS1 && -f /usr/local/share/bash-completion/bash_completion.sh ]] \
@@ -70,3 +55,18 @@ if id -nG $USER | grep -qw "sudo" -qw; then export SUDO_EDITOR=$EDITOR; fi
70 55
71export VISUAL="emacsclient -c" 56export VISUAL="emacsclient -c"
72if id -nG $USER | grep -qw "sudo" -qw; then export SUDO_VISUAL=$VISUAL; fi 57if id -nG $USER | grep -qw "sudo" -qw; then export SUDO_VISUAL=$VISUAL; fi
58
59
60########################################################################
61## GPG
62########################################################################
63GPG_TTY=$(tty)
64export GPG_TTY
65
66
67########################################################################
68## Load ~/.bash_aliases
69########################################################################
70if [[ $- == *i* && -f ~/.bash_aliases ]]; then
71 . ~/.bash_aliases
72fi