2026-02-24

my setup for wezterm

Interfacing the terminal.

#tools#short

Update ~/.wezterm.lua

Windows:

-- Pull in the wezterm API
local wezterm = require("wezterm")

-- This will hold the configuration.
local config = wezterm.config_builder()

config.initial_cols = 128
config.initial_rows = 28
config.font_size = 11
config.color_scheme = 'hardhacker'

-- bash configuration
config.default_prog = { "C:\\Program Files\\Git\\bin\\bash.exe", "--login", "-i" }

-- and finally, return the configuration to wezterm
return config