diff options
-rw-r--r-- | profile/xdg.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/profile/xdg.sh b/profile/xdg.sh index 71ab6bb..e11c5df 100644 --- a/profile/xdg.sh +++ b/profile/xdg.sh | |||
@@ -4,6 +4,8 @@ | |||
4 | # moved there (e.g., HISTFILE is in history.bash). So variables might | 4 | # moved there (e.g., HISTFILE is in history.bash). So variables might |
5 | # move /out/ of this directory, but they probably won't move /in/. | 5 | # move /out/ of this directory, but they probably won't move /in/. |
6 | 6 | ||
7 | # See also [[https://github.com/b3nj5m1n/xdg-ninja][xdg-ninja]]. | ||
8 | |||
7 | # Readline | 9 | # Readline |
8 | export INPUTRC="$XDG_CONFIG_HOME"/readline/inputrc | 10 | export INPUTRC="$XDG_CONFIG_HOME"/readline/inputrc |
9 | 11 | ||
@@ -28,3 +30,16 @@ export XSERVERRC="$XDG_CONFIG_HOME/X11/xserverrc" | |||
28 | 30 | ||
29 | # Notmuch | 31 | # Notmuch |
30 | export NOTMUCH_CONFIG="${XDG_CONFIG_HOME:=$HOME/.config}/notmuch/config" | 32 | export NOTMUCH_CONFIG="${XDG_CONFIG_HOME:=$HOME/.config}/notmuch/config" |
33 | |||
34 | # GNUPG | ||
35 | export GNUPGHOME="$XDG_DATA_HOME/gnupg" | ||
36 | |||
37 | # ICEauthority | ||
38 | export ICEAUTHORITY="$XDG_CACHE_HOME/ICEauthority" | ||
39 | |||
40 | # mbsync (requires alias) | ||
41 | export MBSYNC_CONFIG_HOME="$XDG_CONFIG_HOME/isync/mbsyncrc" | ||
42 | alias mbsync='mbsync -c "$MBSYNC_CONFIG_HOME"' | ||
43 | |||
44 | # npm | ||
45 | export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME/npm/npmrc" | ||