n-kill.conf 708 B

12345678910111213
  1. # How should be current element of the list drawn. Possible values: reverse,
  2. # underline. Default (without option set) is reverse
  3. # On Linux virtual terminal this will be enforced to reverse (because of poor
  4. # underline support on that terminal)
  5. # local active_text=underline
  6. # Colorize first number column and last path segment
  7. # This doesn't cover scripts named "[0-9]## *", which should be very rare
  8. # (#s) is ^, (#e) is $, # is *, ## is + (comparing to regex)
  9. # | is alternative, but only in ()
  10. local NLIST_COLORING_PATTERN="((#s) #[0-9]## |[[][^]]#](#e)|[^ 0-9/?\\\\][^/\\\\]#(#e)|[^ /\\\\]##[^0-9/\\\\ ]##[^/\\\\]#(#e))"
  11. local NLIST_COLORING_COLOR=$'\x1b[00;33m'
  12. local NLIST_COLORING_MATCH_MULTIPLE=1