diff options
author | Aaron LI <aaronly.me@gmail.com> | 2016-01-06 15:48:32 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@gmail.com> | 2016-01-06 15:48:32 +0800 |
commit | b7dc7fcde02f1774b0d14dc6edcec662f3c6e579 (patch) | |
tree | 2288fcc7b06bc2a15cf54ed8a76efcf3d2e3b318 /_tcshrc.local | |
parent | a804d0436a98faffb6d3179697aaee9473548593 (diff) | |
download | dotfiles-b7dc7fcde02f1774b0d14dc6edcec662f3c6e579.tar.bz2 |
Rename .tcsh* => _tcsh*
Diffstat (limited to '_tcshrc.local')
-rw-r--r-- | _tcshrc.local | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/_tcshrc.local b/_tcshrc.local new file mode 100644 index 0000000..fbda62a --- /dev/null +++ b/_tcshrc.local @@ -0,0 +1,43 @@ +## +## ~/.tcshrc.local +## +## Aaron LI +## Created: 2011-06-30 +## Updated: 2016-01-06 +## + +### ConTeXt +setenv OSFONTDIR "$HOME/.fonts;/usr/share/fonts" + +## GCC runtime +set GCC_VERSION=48 +if ( -d "/usr/local/lib/gcc${GCC_VERSION}" ) then + setenv LD_LIBRARY_PATH "/usr/local/lib/gcc${GCC_VERSION}" +endif + +### Astro +if ( $?LD_LIBRARY_PATH ) then + set LD_LIBRARY_PATH_BAK=${LD_LIBRARY_PATH} +endif + +## HEASoft +setenv HEADAS "$HOME/local/heasoft/heasoft-6.16/x86_64-unknown-freebsd10.2" +alias heainit 'source ~/.tcsh/heainit.csh' + +## CIAO +setenv CIAO_PATH "$HOME/local/ciao/ciao-4.6" +alias ciaoinit 'source ~/.tcsh/ciaoinit.csh' + +## MARX +set MARX_PATH = "$HOME/local/marx/5.1" +set path = ( $path $MARX_PATH/bin ) +setenv MARX_DATA_DIR "$MARX_PATH/share/marx/data" +if ( $?PFILES ) then + setenv PFILES "${PFILES}:$MARX_PATH/share/marx/pfiles" +else + setenv PFILES "$MARX_PATH/share/marx/pfiles" +endif + +### misc settings + +# vim: set ts=8 sw=4 tw=0 fenc=utf-8 ft=tcsh: # |