summaryrefslogtreecommitdiffstatshomepage
path: root/sh/.config
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2023-02-11 16:24:14 -0600
committerToby Vincent <tobyv13@gmail.com>2023-02-11 16:24:14 -0600
commit17fa2c0a74f0129c622f38879dac9f7d2e3a4aa0 (patch)
tree90f3bd4ddadaf982b0dfb8665ae04bf6982b3c8a /sh/.config
parent63393e63d474b9197d484edaa2d82c02aa865aa1 (diff)
feat: split `.zshrc` to individual files
split `$XDG_CONFIG_HOME/zsh/.zshrc` up into `$XDG_CONFIG_HOME/zsh/.zshrc.d/*`. This allows for better management and prioritization between different tool's env. Similar to what was done to `.profile` in e712243 (feat: split `.profile` to individual files, 2023-02-10).
Diffstat (limited to 'sh/.config')
-rw-r--r--sh/.config/profile.d/20-docker.sh3
-rw-r--r--sh/.config/profile.d/20-texlive.sh5
-rw-r--r--sh/.config/profile.d/20-wget.sh3
3 files changed, 0 insertions, 11 deletions
diff --git a/sh/.config/profile.d/20-docker.sh b/sh/.config/profile.d/20-docker.sh
deleted file mode 100644
index cd60889..0000000
--- a/sh/.config/profile.d/20-docker.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-export DOCKER_CONFIG="$XDG_CONFIG_HOME/docker"
diff --git a/sh/.config/profile.d/20-texlive.sh b/sh/.config/profile.d/20-texlive.sh
deleted file mode 100644
index f6bff9f..0000000
--- a/sh/.config/profile.d/20-texlive.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-
-export TEXMFHOME="$XDG_DATA_HOME/texmf"
-export TEXMFVAR="$XDG_CACHE_HOME/texlive/texmf-var"
-export TEXMFCONFIG="$XDG_CONFIG_HOME/texlive/texmf-config"
diff --git a/sh/.config/profile.d/20-wget.sh b/sh/.config/profile.d/20-wget.sh
deleted file mode 100644
index 02f7041..0000000
--- a/sh/.config/profile.d/20-wget.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-export WGETRC="$XDG_CONFIG_HOME/wgetrc"