From 2e786361248f8b7d8f6419fde73f9c6a0f54da3c Mon Sep 17 00:00:00 2001 From: Xinhao Yuan Date: Mon, 23 May 2022 23:35:00 -0400 Subject: [PATCH] Clean up a dangling reference. --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 0074062..c2a1675 100644 --- a/init.lua +++ b/init.lua @@ -3,7 +3,7 @@ local layout = require(... .. ".layout") local editor = require(... .. ".editor") local switcher = require(... .. ".switcher") local default_editor = editor.default_editor -local default_layout = layout.create{ name_func = default_name } +local default_layout = layout.create{} local gcolor = require("gears.color") local beautiful = require("beautiful")