From e4dd4ac9e392ec923cdc2d093e75b6e031b3bc02 Mon Sep 17 00:00:00 2001 From: swytch Date: Sun, 14 Jun 2020 16:33:21 +0200 Subject: [PATCH] feat: add envvar to .profile to follow XDG conventions add `texmf` and `pass` paths variables --- .profile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.profile b/.profile index bb77196..16e3525 100644 --- a/.profile +++ b/.profile @@ -13,6 +13,8 @@ export ZDOTDIR="$XDG_CONFIG_HOME/zsh" export GTK2_RC_FILES="$XDG_CONFIG_HOME/gtk-2.0/gtkrc-2.0" export GNUPGHOME="$XDG_CONFIG_HOME/gnupg" export LESSHISTFILE="-" +export TEXMFHOME="$XDG_DATA_HOME/texmf" +export PASSWORD_STORE_DIR="$XDG_DATA_HOME/pass" ## default programs export SUDO_ASKPASS="$HOME/.local/bin/dmenupass"