rice/profile/.profile

21 lines
580 B
Text
Raw Normal View History

2021-05-08 22:24:52 +00:00
[ "$READPROFILE" ] && return
. /etc/profile || true
export READPROFILE=1
2017-12-15 11:01:42 +00:00
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"
2022-05-02 08:25:42 +00:00
export HISTFILE="$XDG_CACHE_HOME/bash_history"
2017-12-15 11:01:42 +00:00
2022-05-23 11:37:00 +00:00
export BROWSER=chromium
2017-12-15 11:01:42 +00:00
export EDITOR=nvim
2021-05-08 22:25:06 +00:00
2022-05-02 08:25:42 +00:00
[ -f "$HOME/.cargo/env" ] && . "$HOME/.cargo/env"
2022-07-22 17:59:07 +00:00
if [ -e /home/buffet/.nix-profile/etc/profile.d/nix.sh ]; then . /home/buffet/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer