Make .profile portable

This commit is contained in:
2020-09-11 16:33:12 +00:00
parent a255203391
commit 4a3d606d05
4 changed files with 33 additions and 25 deletions

16
.profile Normal file
View File

@ -0,0 +1,16 @@
# Default applications
export EDITOR="nvim"
export TERMINAL="st"
export BROWSER="firefox"
export READER="zathura"
# XDG Base Directories
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_CONFIG_HOME="$HOME/.config"
export XDG_DATA_HOME="$HOME/.local/share"
# Application-specific config
export ALSA_CONFIG_PATH="$XDG_CONFIG_HOME/alsa/asoundrc"
export CARGO_HOME="$XDG_DATA_HOME/cargo"
export WGETRC="$XDG_CONFIG_HOME/wget/wgetrc"
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"