Warning: this is an htmlized version!
The original is here, and
the conversion rules are here.
-- This file:
--   http://anggtwu.net/LOVE2D/conf.lua.html
--   http://anggtwu.net/LOVE2D/conf.lua
--          (find-angg "LOVE2D/conf.lua")
-- Author: Eduardo Ochs <eduardoochs@gmail.com>
--
-- «.window-size»	(to "window-size")
-- «.LUA_INIT»		(to "LUA_INIT")
-- «.test-repl»		(to "test-repl")



-- «window-size»  (to ".window-size")
-- See: https://love2d.org/wiki/love.conf
--      https://love2d.org/wiki/Config_Files
--      https://love2d.org/wiki/love.window.setMode
--      http://anggtwu.net/tcl.html#eepitch
--      (find-angg ".tclshrc" "package-require-Tk")
function love.conf(t)
    t.window.width = 200
    t.window.height = 200
  end

-- «LUA_INIT»  (to ".LUA_INIT")
-- See: (find-angg "LUA/lua50init.lua")
dofile(os.getenv("LUA_INIT"):sub(2))


-- «test-repl»  (to ".test-repl")
--[[
* (eepitch-shell)
* (eepitch-kill)
* (eepitch-shell)
echo 'run_repl3_now()' > main.lua
love .
  PPV(sortedkeys(_G))
  PPV(sortedkeys(love))
  PPV(sortedkeys(love.window))
  os.exit()

--]]