diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2026-04-01 07:36:53 +0200 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2026-04-01 07:40:44 +0200 |
| commit | 107701df9d2822b3d1a6cfcb21238ff330070477 (patch) | |
| tree | 48b74800cb0437e23108aad0b32759334b77c21c /.config | |
| parent | c88bfef29eae31b603b59e451414dfec1dd534ca (diff) | |
setup-env: Reorder exports
Diffstat (limited to '.config')
| -rw-r--r-- | .config/setup-env | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/.config/setup-env b/.config/setup-env index 4b661f9..3d672a5 100644 --- a/.config/setup-env +++ b/.config/setup-env @@ -4,15 +4,18 @@ export BROWSER="firefox" export CC="gcc" export EDITOR="nvim" export PAGER="less" -case "$(hostname)" in - mangobox) export MANPAGER="manpager" ;; - mango-os) export MANPAGER="nvimpager" ;; - *) export MANPAGER="less" ;; -esac export TERM="xterm-256color" -export VISUAL="nvim" +export VISUAL="$EDITOR" export MANSECT="3,2,1,8,5,7,4,6,3p,1p,0p" +export MANPAGER="less" export LC_NUMERIC="nl_NL.UTF-8" +case "$(hostname)" in +mangobox) + export BROWSER="firefox-bin" + export MANPAGER="manpager" ;; +mango-os) + export MANPAGER="nvimpager" ;; +esac export XDG_CACHE_HOME="$HOME/.cache" export XDG_CONFIG_DIRS="/etc/xdg" |