12 lines
234 B
Lua
12 lines
234 B
Lua
local wezterm = require("wezterm")
|
|
|
|
local config = wezterm.config_builder()
|
|
|
|
config.window_decorations = "RESIZE"
|
|
config.enable_tab_bar = false
|
|
config.font = wezterm.font("Fira Code Nerd Font")
|
|
config.font_size = 18.0
|
|
|
|
|
|
return config
|