dotfiles/.config/wezterm/wezterm.lua
2025-01-20 22:39:21 -08:00

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