5.9. C Shell Prompts

============
In your .tcshrc: 

set prompt = "%{^[[34m%}[%n@%B%m%b%{^[[34m%}]%{^[[31m%}{%D/%W|%T} %B%~%b%{^[[32m%}%B>%b "
=============
==================

 use something similar to ada's prompt, but I omit the date/time stamp: 


Code:   
set ellipsis 
set prompt="%n@%m:%B%c04%b --%# " 
    


in my .cshrc, which comes out to be 


Code:   
user@host:~ --> 
root@host:~ --# 
    


with "set ellipsis" set, when you are in a really deep path, it makes it so that the prompt isn't insanely long.
============