29 lines
714 B
Tcsh
29 lines
714 B
Tcsh
_debug "Sourcing tcshrc.system.Darwin..."
|
|
|
|
# Set the acknowledgement bit, essentially
|
|
setenv CSHENV_SYSTEM_CONFIGURED Darwin
|
|
|
|
setenv LESS -erF
|
|
setenv PAGER less
|
|
|
|
|
|
# A bunch of stuff from Homebrew has to patch my environment...
|
|
|
|
# Homebrew stuff
|
|
setenv HOMEBREW_PREFIX /opt/homebrew;
|
|
setenv HOMEBREW_CELLAR /opt/homebrew/Cellar;
|
|
setenv HOMEBREW_REPOSITORY /opt/homebrew;
|
|
set path=( /opt/homebrew/bin /opt/homebrew/sbin ${path} )
|
|
test ${?MANPATH} -eq 1 && setenv MANPATH :${MANPATH};
|
|
setenv INFOPATH /opt/homebrew/share/info`test ${?INFOPATH} -eq 1 && echo :${INFOPATH}`;
|
|
|
|
alias printf gprintf
|
|
|
|
_debug "Done sourcing tcshrc.system.Darwin..."
|
|
|
|
###########################
|
|
# vim: ft=tcsh
|
|
###########################
|
|
|
|
|