10 lines
183 B
Lua
10 lines
183 B
Lua
local wezterm = require("wezterm")
|
|
local config = wezterm.config_builder()
|
|
|
|
config.window_decorations = "RESIZE"
|
|
config.enable_tab_bar = false
|
|
config.font_size = 18.0
|
|
|
|
|
|
return config
|