Files
dotfiles/hypr/conf/layout.lua
2026-06-18 11:36:12 +08:00

25 lines
550 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 布局配置dwindle二叉树平铺、master主从、scrolling无限平铺
-- dwindle保留分割方向避免自动合并
hl.config({
dwindle = {
preserve_split = true,
},
})
-- master新窗口成为 master 占左侧
hl.config({
master = {
new_status = "master",
mfact = 0.55, -- master 区占比
orientation = "left", -- master 在左侧
},
})
-- scrolling单列全屏模式
hl.config({
scrolling = {
fullscreen_on_one_column = true,
},
})