diff options
author | Timmy Keller <tjk@tjkeller.xyz> | 2023-10-03 10:01:31 -0500 |
---|---|---|
committer | Timmy Keller <tjk@tjkeller.xyz> | 2023-10-03 10:01:31 -0500 |
commit | 2d65c8d43cc8d280ab72d93037be17715e94abbc (patch) | |
tree | 246e86459207252607333f1289ca6276e632a511 | |
parent | 96bf554c528c58375d1b6caf133693985a51b1df (diff) | |
download | dotconfig-2d65c8d43cc8d280ab72d93037be17715e94abbc.tar.xz dotconfig-2d65c8d43cc8d280ab72d93037be17715e94abbc.zip |
add npmrc for uncluttering home dir and also add docker uncitter for docker config
-rw-r--r-- | npm/npmrc | 3 | ||||
-rwxr-xr-x | zsh/zprofile | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/npm/npmrc b/npm/npmrc new file mode 100644 index 0000000..832942d --- /dev/null +++ b/npm/npmrc @@ -0,0 +1,3 @@ +prefix=${XDG_DATA_HOME}/npm +cache=${XDG_CACHE_HOME}/npm +init-module=${XDG_DATA_HOME}/npm/npm-init.js diff --git a/zsh/zprofile b/zsh/zprofile index 2081946..79e87c5 100755 --- a/zsh/zprofile +++ b/zsh/zprofile @@ -12,6 +12,7 @@ export SUDO='doas' # Make programs follow the XDG base directory specification export XDG_CACHE_HOME="$HOME/.cache" export ANSIBLE_GALAXY_CACHE_DIR="${XDG_CACHE_HOME}/ansible/galaxy_cache" +export DOCKER_CONFIG="$XDG_CACHE_HOME/docker" export XAUTHORITY="$XDG_CACHE_HOME/Xauthority" export XDG_CONFIG_HOME="$HOME/.config" |