35ec6f0de6
The initial release of the rootiest-wezterm config BREAKING CHANGE: First Commit!
21 lines
692 B
Lua
21 lines
692 B
Lua
-- ╭─────────────────────────────────────────────────────────╮
|
|
-- │ WINDOW │
|
|
-- ╰─────────────────────────────────────────────────────────╯
|
|
|
|
return {
|
|
-- Set the initial size
|
|
initial_cols = 180,
|
|
initial_rows = 38,
|
|
|
|
-- Set the window padding
|
|
window_padding = {
|
|
left = 0,
|
|
right = 0,
|
|
top = 10,
|
|
bottom = 0,
|
|
},
|
|
|
|
-- Set the animation framerate
|
|
animation_fps = 120,
|
|
}
|