41 lines
1.4 KiB
Tcsh
41 lines
1.4 KiB
Tcsh
######################
|
|
### PROMPT COLOURS ###
|
|
######################
|
|
|
|
|
|
set date_color="${dim_magenta}"
|
|
set time_color="${bright_magenta}"
|
|
set text_color="${bright_white}"
|
|
set oldp_color="${dim_white}"
|
|
set brace_color="${bright_yellow}"
|
|
set host_color="${bright_blue}"
|
|
set name_color="${bright_cyan}"
|
|
set at_color="${dim_cyan}"
|
|
set path_color="${bright_green}"
|
|
set line_color="${dim_red}"
|
|
set prompt_color="${dim_white}"
|
|
set depth_color="${dim_yellow}"
|
|
set command_color="${dim_white}"
|
|
|
|
set color_start="%{"
|
|
set color_end="%}"
|
|
|
|
set date_color_seq="${color_start}${date_color}${color_end}"
|
|
set time_color_seq="${color_start}${time_color}${color_end}"
|
|
set text_color_seq="${color_start}${text_color}${color_end}"
|
|
set oldp_color_seq="${color_start}${oldp_color}${color_end}"
|
|
set brace_color_seq="${color_start}${brace_color}${color_end}"
|
|
set host_color_seq="${color_start}${host_color}${color_end}"
|
|
set name_color_seq="${color_start}${name_color}${color_end}"
|
|
set at_color_seq="${color_start}${at_color}${color_end}"
|
|
set path_color_seq="${color_start}${path_color}${color_end}"
|
|
set line_color_seq="${color_start}${line_color}${color_end}"
|
|
set prompt_color_seq="${color_start}${prompt_color}${color_end}"
|
|
set depth_color_seq="${color_start}${depth_color}${color_end}"
|
|
set command_color_seq="${color_start}${command_color}${color_end}"
|
|
|
|
|
|
###########################
|
|
# vim:filetype=tcsh
|
|
###########################
|