33 lines
776 B
Tcsh
33 lines
776 B
Tcsh
if( $?CSHENV_DEBUG ) then
|
|
echo "Sourcing tcshrc.system.Darwin..."
|
|
endif
|
|
|
|
# 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
|
|
|
|
if( $?CSHENV_DEBUG ) then
|
|
echo "Done sourcing tcshrc.system.Darwin..."
|
|
endif
|
|
|
|
###########################
|
|
# vim: ft=tcsh
|
|
###########################
|
|
|
|
|