This was not being pushed from a testing MacBook so I'm adding it all at once. This is unfinished, still needs scripts to prep the working macOS env from which the live env is built. El Capitan code is likely to be dropped completely. Installing or compiling dependencies in brew is problematic at this point.
25 lines
550 B
Bash
25 lines
550 B
Bash
export HOME=/Volumes/RAM_Disk
|
|
export LC_ALL=en_US.UTF-8
|
|
export LANG=en_US.UTF-8
|
|
export EDITOR='vim'
|
|
export VISUAL='vim'
|
|
export PAGER='less'
|
|
|
|
export XDG_CACHE_HOME="$HOME/.cache"
|
|
export XDG_CONFIG_DIRS="/etc/xdg"
|
|
export XDG_CONFIG_HOME="/"
|
|
export XDG_DATA_DIRS="/usr/local/share:/usr/share"
|
|
export XDG_DATA_HOME="$HOME/.local/share"
|
|
|
|
# Ensure path arrays do not contain duplicates.
|
|
typeset -gU cdpath fpath mailpath path
|
|
|
|
path=(
|
|
/usr/local/opt/{e2fsprogs,ruby,util-linux}/{bin,sbin}
|
|
/usr/local/{bin,sbin}
|
|
$path
|
|
)
|
|
|
|
## Load aliases
|
|
. "/.aliases"
|
|
|