aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-05-12 23:36:55 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-05-12 23:56:20 +1200
commit900faf00307d1d29d147d761f748b59a23806cd4 (patch)
treea3d28bb33c579a1ccc4a9156bdd5cbc2c9c3a7c0
parentAdd option terminators to some mkdir calls (diff)
downloaddotfiles-900faf00307d1d29d147d761f748b59a23806cd4.tar.gz
dotfiles-900faf00307d1d29d147d761f748b59a23806cd4.zip
Move systemd editor setting to after visual
Loaded out of order otherwise, so doesn't get set.
-rw-r--r--sh/profile.d/systemd.sh4
-rw-r--r--sh/profile.d/visual.sh6
2 files changed, 6 insertions, 4 deletions
diff --git a/sh/profile.d/systemd.sh b/sh/profile.d/systemd.sh
deleted file mode 100644
index a6e1b707..00000000
--- a/sh/profile.d/systemd.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-# If systemctl is installed, use $VISUAL as its editor, not $EDITOR
-command -v systemctl >/dev/null 2>&1 || return
-SYSTEMD_EDITOR=$VISUAL
-export SYSTEMD_EDITOR
diff --git a/sh/profile.d/visual.sh b/sh/profile.d/visual.sh
index 19c8f490..eb3c1143 100644
--- a/sh/profile.d/visual.sh
+++ b/sh/profile.d/visual.sh
@@ -6,3 +6,9 @@ else
VISUAL='vi'
fi
export VISUAL
+
+# If systemctl is installed, use $VISUAL as its editor, not $EDITOR
+if command -v systemctl >/dev/null 2>&1 ; then
+ SYSTEMD_EDITOR=$VISUAL
+ export SYSTEMD_EDITOR
+fi