summaryrefslogtreecommitdiff
path: root/.bash_profile
diff options
context:
space:
mode:
authorJake Koroman <jake@jakekoroman.com>2025-10-03 13:27:21 -0400
committerJake Koroman <jake@jakekoroman.com>2025-10-03 13:27:21 -0400
commit268ed22e44463523723c428826d40628e1b89953 (patch)
treeb47e1aa43f5d014139e90b124405b0f5405b17e1 /.bash_profile
parent229d215f8b6b22bc52c12135099afe73c598b598 (diff)
.bash_profile: update SUDO to doas and EDITOR to nvim.
Diffstat (limited to '.bash_profile')
-rw-r--r--.bash_profile4
1 files changed, 2 insertions, 2 deletions
diff --git a/.bash_profile b/.bash_profile
index e72eec5..b5f10df 100644
--- a/.bash_profile
+++ b/.bash_profile
@@ -3,10 +3,10 @@
# Set up the home environment profile.
if [ -f ~/.profile ]; then source ~/.profile; fi
-export SUDO="sudo"
+export SUDO="doas"
export TERMINAL="st"
export BROWSER="firefox"
-export EDITOR="emacsclient -c -a 'emacs -nw'"
+export EDITOR="nvim"
export XDG_CONFIG_HOME="$HOME/.config"
export XDG_DATA_HOME="$HOME/.local/share"
export XDG_CACHE_HOME="$HOME/.cache"