11 lines
313 B
Bash
11 lines
313 B
Bash
test -z "$PROFILEREAD" && . /etc/profile || true
|
|
|
|
export XDG_CONFIG_HOME="$HOME/.config"
|
|
export XDG_CACHE_HOME="$HOME/.cache"
|
|
export XDG_DATA_DIR="$HOME/.local/share"
|
|
|
|
export INPUTRC="$XDG_CONFIG_HOME/readline/inputrc"
|
|
export LESSHISTFILE="$XDG_CACHE_HOME/less_history"
|
|
|
|
export BROWSER=firefox
|
|
export EDITOR=nvim
|