From 3ac8e0f994839f3c972033bcb12421081ebeb683 Mon Sep 17 00:00:00 2001 From: David Runge Date: Tue, 28 Sep 2021 22:50:56 +0200 Subject: zsh: move includes to XDG compliant locations .config/zsh/{functions,includes}/*: Move functions and includes to XDG compliant locations. .zshrc: Include functions and other includes from XDG compliant locations. Remove use of prepend-sudo function. --- .config/zsh/includes/hostspecific.zsh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .config/zsh/includes/hostspecific.zsh (limited to '.config/zsh/includes/hostspecific.zsh') diff --git a/.config/zsh/includes/hostspecific.zsh b/.config/zsh/includes/hostspecific.zsh new file mode 100644 index 0000000..20d569b --- /dev/null +++ b/.config/zsh/includes/hostspecific.zsh @@ -0,0 +1,6 @@ +case "${HOST}" in + s4|s5|c{1,2}*) + . $HOME/.zsh.after/apt + . $HOME/.zsh.after/unixpool + ;; +esac -- cgit v1.2.3-54-g00ecf