home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / mint / init_5 / csh.rc < prev    next >
Text File  |  1993-08-03  |  2KB  |  88 lines

  1. #!/bin/csh
  2. #
  3. # misc. standard csh variables get set here
  4. #
  5. set history=25
  6. set autolist
  7. if ( $user == root ) then
  8.    set prompt='# '
  9. else
  10.    set prompt='% '
  11. endif
  12. set prompt2='? '
  13.  
  14. #
  15. # special tcsh alias: a command that gets executed before every prompt
  16. # this makes sure the cursor is on
  17.  
  18. #alias precmd 'echotc ti'
  19.  
  20. #
  21. # atariST extension: use ^ instead of \ as an escape character,
  22. # so that  \ can be used more conveniently in file names
  23. #
  24. #set escchar=^
  25.  
  26. #
  27. # atariST extension: use \ in preference to / when completing names,
  28. # doing ls-F, etc. Set this variable only if you have set escchar to
  29. # something other than \
  30. #
  31. # set dosslashes
  32. #
  33.  
  34. #
  35. # note: in PATH, use "/dev/c" in place of "c:". If you're using MiNT
  36. # and drive U:, you don't need to worry about this, since all your
  37. # paths can be absolute
  38. #
  39. set path=( . /bin /usr/local/bin /usr/bin /usr/ucb /gnu/bin /usr/games )
  40.  
  41. set ignoreeof=1
  42. set notify=1
  43.  
  44. #setenv PATH :/dev/d/bin:/dev/d/gnu/bin:/dev/e/mint/bin:/dev/i/mgr/bin
  45. rehash
  46.  
  47. #
  48. # environment: this is for my setup, customize as you see fit
  49. #
  50.  
  51. # Sometime, there are lots of places that one can find man pages.
  52. setenv MANPATH /usr/local/man:/usr/man
  53. setenv TEXINPUTS .:$HOME/bin/tex:$HOME/bin:/usr/lib/tex/macros
  54.  
  55. # Where's the Gnu stuff at?
  56. setenv BISON_SIMPLE /usr/lib/bison.sim
  57. setenv BISON_HAIRY /usr/lib/bison.hai
  58.  
  59. setenv GCCEXEC /gnu/gnuc/gcc-
  60. setenv GNULIB /usr/lib
  61. setenv GNUINC /usr/include
  62.  
  63. setenv TMP /tmp
  64. setenv TEMP /tmp
  65. setenv TMPDIR /tmp
  66.  
  67. setenv LSOPTS C
  68.  
  69. setenv TERMCAP /etc/termcap
  70.  
  71. setenv TZ GMT
  72. setenv UNIXMODE "/cub"
  73. setenv SHELL /bin/sh.ttp
  74.  
  75. #
  76. # aliases:
  77. #
  78.  
  79. #alias ls ls-F
  80. alias pwd echo \$cwd
  81. alias j jobs -l
  82. alias po popd
  83. alias pu pushd
  84. alias edit jove
  85. alias dir ls -aF
  86. alias shutdown kill -TERM 1
  87. alias bye logout
  88.