2017-07-17 11:36:56 +00:00
|
|
|
|
2017-07-17 19:33:11 +00:00
|
|
|
-- pretty.init
|
|
|
|
-- In case somebody loads `init.lua`. Just redirects to `pretty.lua`.
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
2017-07-17 11:36:56 +00:00
|
|
|
local premodule = (...)
|
|
|
|
if premodule == 'init' then premodule = '' end
|
|
|
|
return require (premodule .. (premodule ~= '' and '.' or '') .. 'pretty')
|