This commit is contained in:
thek4n 2024-11-18 22:13:19 +03:00
parent cab6652a51
commit e4aa9aee25

View File

@ -1,18 +1,18 @@
# vim: ft=zsh # vim: ft=zsh
export XDG_CONFIG_HOME="$HOME/.config" export XDG_CONFIG_HOME="${HOME}/.config"
export ZDOTDIR="$XDG_CONFIG_HOME/zsh" export ZDOTDIR="${XDG_CONFIG_HOME}/zsh"
for TMPDIR in "$TMPDIR" "$TMP" /tmp /var/tmp for TMPDIR in "${TMPDIR}" "${TMP}" /tmp /var/tmp
do do
test -d "$TMPDIR" && break test -d "${TMPDIR}" && break
done done
export TMPDIR export TMPDIR
export EDITOR="nvim" export EDITOR="nvim"
export VISUAL="$EDITOR" export VISUAL="${EDITOR}"
export PAGER="less" export PAGER="less"
export LESS="-nMWiSRx4 --mouse -j2 -# 1 -+X -+F" export LESS="-nMWiSRx4 --mouse -j2 -# 1 -+X -+F"
@ -40,8 +40,8 @@ export BROWSERCLI=w3m
test -z "${BROWSER}" && BROWSER=firefox test -z "${BROWSER}" && BROWSER=firefox
export BROWSER export BROWSER
if [ -d "$HOME/.local/bin" ] ; then if [ -d "${HOME}/.local/bin" ] ; then
export PATH="$HOME/.local/bin:$PATH" export PATH="${HOME}/.local/bin:${PATH}"
fi fi
umask 022 umask 022