Marty Oehme
6380affb6f
The only file left in $HOME is .zshenv, which sets up zsh to source everything from XDG_CONFIG_HOME/zsh. Shell files are split into sh and zsh directories, for global assignments (which should be posix compliant, work on any posix shell) like environemnt variables, xdg vars, and global aliases. zsh contains zsh specific customization (prompt customization, plugin loading, zsh completions). Zsh initialization will pull from sh directory first, loading the respective mirror to its startup file (`.zprofile` loads `sh/profile` and `profile.d/*`, `.zshenv` loads `sh/env` and `sh/env.d/*` and `zsh/env.d/*`, `.zshrc` loads `sh/alias`, `sh/alias.d/*` and `zsh/alias.d/*`) Once all is done, it will have loaded both global variables, aliases and settings, and zsh-only specifications. Other stow modules, if they want to add shell functionality, can include their aliases and functions in one of the above directories to automatically be picked up by zsh.
18 lines
510 B
Bash
18 lines
510 B
Bash
#!/usr/bin/env sh
|
|
#
|
|
# Is executed for any base sh login-shell
|
|
# Bash only executes when neither bash-profile nor bashrc exist
|
|
# (will only load the first one it finds)
|
|
#
|
|
# see https://github.com/rbenv/rbenv/wiki/unix-shell-initialization
|
|
|
|
## Load all global environmment variables
|
|
# shellcheck source=env
|
|
[ -f ~/.config/sh/env ] && . ~/.config/sh/env
|
|
# load additional packages
|
|
if [ -d "$XDG_CONFIG_HOME/sh/env.d" ]; then
|
|
for _env in "$XDG_CONFIG_HOME/sh/env.d"/*.sh; do
|
|
. "$_env"
|
|
done
|
|
unset _env
|
|
fi
|