layout-machi/init.lua

14 lines
378 B
Lua
Raw Normal View History

2019-07-13 00:04:39 +02:00
local layout = require(... .. ".layout")
local editor = require(... .. ".editor")
local switcher = require(... .. ".switcher")
local default_editor = editor.create()
local default_layout = layout.create("default", default_editor)
2019-07-12 00:06:40 +02:00
return {
2019-07-13 00:04:39 +02:00
layout = layout,
editor = editor,
switcher = switcher,
default_editor = default_editor,
default_layout = default_layout,
2019-07-12 00:06:40 +02:00
}