update: init layout config

This commit is contained in:
2026-05-29 18:56:48 -04:00
parent a0af16868b
commit 0208181c07
3 changed files with 22 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
local M = {}
local settings = require("lua.lib.settings")
M.confs = {
general = {
layout = settings["default_layout"],
},
dwindle = {},
master = {},
scrolling = {},
monocle = {},
}
function M.load()
hl.config(M.confs)
end
return M