home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / cli / tcsh.zoo / tcsh.rc < prev    next >
Text File  |  1991-11-25  |  1KB  |  62 lines

  1. #
  2. # misc. standard csh variables get set here
  3. #
  4. set history=25
  5. set autolist
  6. set prompt='csh(\!) '
  7.  
  8. #
  9. # special tcsh alias: a command that gets executed before every prompt
  10. # this makes sure the cursor is on
  11.  
  12. alias precmd 'echotc ti'
  13.  
  14. #
  15. # atariST extension: use ^ instead of \ as an escape character,
  16. # so that  \ can be used more conveniently in file names
  17. #
  18. set escchar=^
  19.  
  20. #
  21. # atariST extension: use \ in preference to / when completing names,
  22. # doing ls-F, etc. Set this variable only if you have set escchar to
  23. # something other than \
  24. #
  25. # set dosslashes
  26. #
  27.  
  28. #
  29. # note: in PATH, use "/dev/c" in place of "c:". If you're using MiNT
  30. # and drive U:, you don't need to worry about this, since all your
  31. # paths can be absolute
  32. #
  33. setenv PATH :/dev/d/bin:/dev/d/gnu/bin:/dev/e/mint/bin:/dev/i/mgr/bin
  34. rehash
  35.  
  36. #
  37. # environment: this is for my setup, customize as you see fit
  38. #
  39.  
  40. set term=st52
  41. setenv GCCEXEC d:\gnu\bin\gcc-
  42. setenv GNULIB d:\gnu\lib
  43. setenv GNUINC c:\libsrc\include
  44. setenv TEMP m:
  45. setenv TMPDIR $TEMP
  46. setenv USER eric
  47. setenv CC gcc
  48. setenv AS gcc-as
  49. setenv SHELL sh
  50. setenv TZ EST5EDT
  51. setenv UNIXMODE "/cu"
  52. setenv TEXINPUTS '.;f:\tex\macros'
  53. setenv TEXFORMATS f:\tex\macros
  54. setenv TEXFONTS f:\tex\fonts
  55. setenv TMACDIR c:\nroff\src
  56.  
  57. #
  58. # aliases:
  59. #
  60.  
  61. alias ls ls-F
  62.