about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2022-06-15 15:28:57 -0500
committerCase Duckworth2022-06-15 15:28:57 -0500
commit3c81c19832fbc27556f4c119ce8cdd65bfed6ab6 (patch)
tree2856ed31a8b00f0b25c0963b1bef429bd85ac3d8
parentKeychain (diff)
downloadetc-3c81c19832fbc27556f4c119ce8cdd65bfed6ab6.tar.gz
etc-3c81c19832fbc27556f4c119ce8cdd65bfed6ab6.zip
XDG-ninja
-rw-r--r--profile/xdg.sh15
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
8export INPUTRC="$XDG_CONFIG_HOME"/readline/inputrc 10export 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
30export NOTMUCH_CONFIG="${XDG_CONFIG_HOME:=$HOME/.config}/notmuch/config" 32export NOTMUCH_CONFIG="${XDG_CONFIG_HOME:=$HOME/.config}/notmuch/config"
33
34# GNUPG
35export GNUPGHOME="$XDG_DATA_HOME/gnupg"
36
37# ICEauthority
38export ICEAUTHORITY="$XDG_CACHE_HOME/ICEauthority"
39
40# mbsync (requires alias)
41export MBSYNC_CONFIG_HOME="$XDG_CONFIG_HOME/isync/mbsyncrc"
42alias mbsync='mbsync -c "$MBSYNC_CONFIG_HOME"'
43
44# npm
45export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME/npm/npmrc"