aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Williams <tgwil@tgwil.net>2024-10-13 06:40:01 -0400
committerTristan Williams <tgwil@tgwil.net>2024-10-13 06:40:01 -0400
commit6914bb4f4b89b6d704d0e3c6a2cc02cd5bc92142 (patch)
treeff8ba2484335791f9b2b7ccd21d4a9fbdf389ed5
parent.bashrc: Set EDITOR and VISUAL (diff)
downloaddotfiles.core-6914bb4f4b89b6d704d0e3c6a2cc02cd5bc92142.tar.gz
dotfiles.core-6914bb4f4b89b6d704d0e3c6a2cc02cd5bc92142.tar.bz2
dotfiles.core-6914bb4f4b89b6d704d0e3c6a2cc02cd5bc92142.zip
.bashrc: Reorder things to be more logical
-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