initial checkin
[zsh-lovers.git] / zsh_people / bruno_bonfils / misc / zshistrc
1 # delimiters can be any string, you can use colour["colourname"] and + operator
2 # to get interesting colour effects
3 # Colours are one of: 
4 #       none, default, bold, underline, blink, reverse, concealed,
5 #       black, green, yellow, blue, magenta, cyan, white,
6 #       on_black, on_green, on_yellow, on_blue, on_magenta, on_cyan,
7 #       on_white, beep
8 # on_red means that the background (instead of foreground) is painted 
9 # with red etc...
10
11 delim1 = colours["green"] # before time string
12 delim2 = colours["red"]+":" # after time string
13 delim3 = ": "+colours["default"] # before command
14 delim4 = colours["default"] # at the end of line - you'd better leave colours["default"] at the end!
15 delim5 = colours["bold"]+colours["blue"] # before unrecognized line format
16
17
18 # timeformat can contain following directives:
19 #
20 #   Directive  Meaning
21 #   %a         Locale's abbreviated weekday name.
22 #   %A         Locale's full weekday name.
23 #   %b         Locale's abbreviated month name.
24 #   %B         Locale's full month name.
25 #   %c         Locale's appropriate date and time representation.
26 #   %d         Day of the month as a decimal number [01,31].
27 #   %H         Hour (24-hour clock) as a decimal number [00,23].
28 #   %I         Hour (12-hour clock) as a decimal number [01,12].
29 #   %j         Day of the year as a decimal number [001,366].
30 #   %m         Month as a decimal number [01,12].
31 #   %M         Minute as a decimal number [00,59].
32 #   %p         Locale's equivalent of either AM or PM.
33 #   %S         Second as a decimal number [00,61].
34 #   %U         Week number of the year (Sunday as the first day of the week) 
35 #              as a decimal number [00,53]. All days in a new year preceding 
36 #              the first Sunday are considered to be in week 0.
37 #   %w         Weekday as a decimal number [0(Sunday),6].
38 #   %W         Week number of the year (Monday as the first day of the week) 
39 #              as a decimal number [00,53]. All days in a new year preceding 
40 #              the first Sunday are considered to be in week 0.
41 #   %x         Locale's appropriate date representation.
42 #   %X         Locale's appropriate time representation.
43 #   %y         Year without century as a decimal number [00,99].
44 #   %Y         Year with century as a decimal number.
45 #   %Z         Time zone name (or by no characters if no time zone exists).
46 #   %%         %
47
48 timeformat = "%d %b %H:%M:%S"