diff options
Diffstat (limited to 'home')
-rw-r--r-- | home/.bashrc | 30 |
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 | ######################################################################## | ||
24 | if [[ $- == *i* && -f ~/.bash_aliases ]]; then | ||
25 | . ~/.bash_aliases | ||
26 | fi | ||
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 | ######################################################################## | ||
40 | GPG_TTY=$(tty) | ||
41 | export 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 | ||
71 | export VISUAL="emacsclient -c" | 56 | export VISUAL="emacsclient -c" |
72 | if id -nG $USER | grep -qw "sudo" -qw; then export SUDO_VISUAL=$VISUAL; fi | 57 | if id -nG $USER | grep -qw "sudo" -qw; then export SUDO_VISUAL=$VISUAL; fi |
58 | |||
59 | |||
60 | ######################################################################## | ||
61 | ## GPG | ||
62 | ######################################################################## | ||
63 | GPG_TTY=$(tty) | ||
64 | export GPG_TTY | ||
65 | |||
66 | |||
67 | ######################################################################## | ||
68 | ## Load ~/.bash_aliases | ||
69 | ######################################################################## | ||
70 | if [[ $- == *i* && -f ~/.bash_aliases ]]; then | ||
71 | . ~/.bash_aliases | ||
72 | fi | ||