aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bash/.profile
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-05-27 13:25:01 -0500
committerToby Vincent <tobyv13@gmail.com>2022-05-27 13:25:01 -0500
commitd9e5d80de8a5a688fc8cc2d98f9bc5220767e6cb (patch)
tree8429f50fc0936af2f8174fb530643fd7074a01a8 /bash/.profile
parent55a3fc11aefe44f8ceb07d43c34fd69d9855fc01 (diff)
refactor: move to chromium as default browser
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 cd002f5..2a4c4b8 100644
--- a/bash/.profile
+++ b/bash/.profile
@@ -12,8 +12,8 @@ export BASH_COMPLETION_USER_DIR=$XDG_DATA_HOME/bash-completion/completions
export LESSHISTFILE=$XDG_STATE_HOME/lesshst
export WGETRC=$XDG_CONFIG_HOME/wgetrc
-export EDITOR="$(command -v nvim 2>/dev/null || command -v vim 2>/dev/null || command -v vi)"
-export BROWSER="firefox"
+export EDITOR="$( command -v nvim 2>/dev/null || command -v vim 2>/dev/null || command -v vi )"
+export BROWSER="$( command -v chromium 2>/dev/null || command -v firefox )"
export TERMINAL="alacritty"
export MANPAGER="sh -c 'col -bx | bat -l man -p'"
export MANROFFOPT="-c"