rice/profile/.profile
2024-05-20 12:06:15 +02:00

20 lines
580 B
Bash

[ "$READPROFILE" ] && return
. /etc/profile || true
export READPROFILE=1
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 HISTFILE="$XDG_CACHE_HOME/bash_history"
export BROWSER=chromium
export EDITOR=nvim
[ -f "$HOME/.cargo/env" ] && . "$HOME/.cargo/env"
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