From 6914bb4f4b89b6d704d0e3c6a2cc02cd5bc92142 Mon Sep 17 00:00:00 2001 From: Tristan Williams Date: Sun, 13 Oct 2024 06:40:01 -0400 Subject: .bashrc: Reorder things to be more logical --- home/.bashrc | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'home') diff --git a/home/.bashrc b/home/.bashrc index 78ac39a..0a2f914 100644 --- a/home/.bashrc +++ b/home/.bashrc @@ -18,14 +18,6 @@ if [[ $- != *i* ]]; then fi -######################################################################## -## Load ~/.bash_aliases -######################################################################## -if [[ $- == *i* && -f ~/.bash_aliases ]]; then - . ~/.bash_aliases -fi - - ######################################################################## ## PATH ######################################################################## @@ -34,13 +26,6 @@ fi PATH=$PATH:$HOME/bin -######################################################################## -## GPG -######################################################################## -GPG_TTY=$(tty) -export GPG_TTY - - ######################################################################## ## Bash completion ######################################################################## @@ -70,3 +55,18 @@ 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 -- cgit v1.2.3