refactor code structure

This commit is contained in:
2026-08-12 23:15:12 -07:00
parent fef03be5f6
commit bfe5419bb9
17 changed files with 505 additions and 562 deletions
+15
View File
@@ -0,0 +1,15 @@
-- Create persistent master-layout workspaces from the shared workspace list.
local settings = require("config.settings")
for _, workspace in ipairs(settings.named_workspaces) do
hl.workspace_rule({
workspace = workspace.selector,
layout = "master",
layout_opts = {
orientation = "left",
},
persistent = true,
-- Keep communication/media workspaces on the right-hand monitor.
monitor = settings.monitors.secondary.output,
})
end