--[[
YAL configuration.
'validtype' is a comma-separated list of numeric filetypes,
  set equal to 'true', to be allowed in the search.
'validleaf' is a pattern to be matched by the leafnames
  of files to be searched.
'recurse' is a Boolean value that determines whether subdirectories
  are searched recursively.
--]]
=> {   ---- YAL search configuration. Modify the lines below.

   validtype = { [0xfff] = true, [0xfeb] = true, [0xfaf] = true };
   validleaf = [[^.*$]];
   recurse = true;

   }   ----