aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sh/.profile
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-08-20 17:05:36 -0500
committerToby Vincent <tobyv13@gmail.com>2022-08-20 17:05:36 -0500
commit9f28312230194b1d1c0a716a72cf07442d09a277 (patch)
tree54a91e1cc9c434972396969ca707d57ae6f58304 /sh/.profile
parent1bd2b586d4c7d6381af548944b75f57458f0d337 (diff)
fix: undo accidental reversion of $BROWSER
Diffstat (limited to 'sh/.profile')
-rw-r--r--sh/.profile2
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/.profile b/sh/.profile
index 1098a70..5e0a8a0 100644
--- a/sh/.profile
+++ b/sh/.profile
@@ -15,7 +15,7 @@ export XDG_RUNTIME_DIR="${XDG_RUNTIME_DIR:-/run/user/$(id -u "$USER")}"
# prog
EDITOR="$(command -v nvim 2>/dev/null || command -v vim 2>/dev/null || command -v vi)"
-BROWSER="$(command -v chromium 2>/dev/null || command -v firefox)"
+BROWSER="$(command -v firefox || command -v chromium 2>/dev/null)"
export EDITOR BROWSER
export TERMINAL="alacritty"
export MANPAGER="sh -c 'col -bx | bat -l man -p'"