summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorSuleyman Farajli <suleyman@farajli.net>2025-06-26 16:50:16 +0400
committerSuleyman Farajli <suleyman@farajli.net>2025-06-26 16:50:16 +0400
commite1e100c15889075529fc5de1c0fe9913c72e8583 (patch)
tree02a8b264ec855fb89f577b173bcac755304ab988 /config
parent137cc99f4ba4d68f43080d90fbc7dd4b17de4f5f (diff)
fix(profile): use variable name `TERMINAL` instead of `TERM` to set default terminal
Diffstat (limited to 'config')
-rw-r--r--config/shell/profile4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/shell/profile b/config/shell/profile
index 749fd47..ef518c4 100644
--- a/config/shell/profile
+++ b/config/shell/profile
@@ -15,8 +15,8 @@ export PATH="${XDG_BIN_DIR}:${PATH}"
# Environment variables
[ -x "$(command -v vim)" ] && export EDITOR="vim"
[ -x "$(command -v nvim)" ] && export EDITOR="nvim"
-[ -x "$(command -v alacritty)" ] && export TERM="alacritty"
-[ -x "$(command -v st)" ] && export TERM="st"
+[ -x "$(command -v alacritty)" ] && export TERMINAL="alacritty"
+[ -x "$(command -v st)" ] && export TERMINAL="st"
[ -x "$(command -v firefox)" ] && export BROWSER="firefox"
[ -x "$(command -v qutebrowser)" ] && export BROWSER="qutebrowser"