File: //etc/csh.cshrc
# $FreeBSD: release/12.0.0/etc/csh.cshrc 50472 1999-08-27 23:37:10Z peter $
#
# System-wide .cshrc file for csh(1).
setenv LSCOLORS ExgxcxdxBxegedabagacad
setenv CLICOLOR
alias h history 25
alias j jobs -l
alias la ls -a
alias lf ls -FA
alias ll ls -Fal
# correct warnings
# correct wrapping
#alias php /usr/sbin/php
alias php /usr/iports/php70/bin/php
# error supressing
alias pkg /usr/sbin/pkg-wrap
# A righteous umask
umask 002
set path = ($HOME/bin /usr/local/sbin /usr/local/bin /usr/iports/mysql57/bin /usr/iports/bin /usr/iports/sbin /sbin /bin /usr/sbin /usr/bin /usr/games)
setenv EDITOR nano
setenv PAGER more
setenv BLOCKSIZE K
setenv BASH_ENV ~/.bashrc
#ccache settings
setenv PATH %%PREFIX%%/%%CCLINKDIR%%:$PATH
setenv CCACHE_PATH /usr/bin:%%LOCALBASE%%/bin
setenv CCACHE_DIR /tmp/ccache
setenv CCACHE_LOGFILE /var/log/ccache.log
setenv PYTHONPATH /usr/iports/lib/python2.7/site-packages:/usr/local/lib/python2.7/site-packages:/usr/local/lib/python2.7/lib-dynload:/usr/iports/lib/python3.6/site-packages:/usr/local/lib/python3.6/site-packages:/usr/local/lib/python3.6/lib-dynload
setenv PERL5LIB /usr/local/lib/perl5/site_perl/mach/5.26:/usr/local/lib/perl5/site_perl:/usr/local/lib/perl5/5.26/mach:/usr/local/lib/perl5/5.26:/usr/local/lib/perl5/site_perl/5.26:/usr/local/lib/perl5/site_perl/5.26/mach:/usr/iports/lib/perl5/site_perl/mach/5.26:/usr/iports/lib/perl5/site_perl:/usr/iports/lib/perl5/5.26/mach:/usr/iports/lib/perl5/5.26:/usr/iports/lib/perl5/site_perl/5.26:/usr/iports/lib/perl5/site_perl/5.26/mach
setenv PKG_CONFIG_PATH /usr/local/libdata/pkgconfig:/usr/iports/libdata/pkgconfig
setenv SGML_CATALOG_FILES /usr/local/share/sgml/catalog
setenv XML_CATALOG_FILES /usr/local/share/xml/catalog
if ( -x /usr/local/bin/ccache ) then
/usr/local/bin/ccache -M 1024m > /dev/null
endif
if ($?prompt) then
# An interactive shell -- set some stuff up
set prompt = "[`whoami`\@`hostname -s` %.]# "
set filec
set autolist
set history = ( 1000 "%h %D.%W.%Y %T %R\n" )
set savehist = 1000
set mail = (/var/mail/$USER)
if ( $?tcsh ) then
bindkey "^W" backward-delete-word
bindkey -k up history-search-backward
bindkey -k down history-search-forward
endif
endif
alias sudo sudo -s