Files
dotfiles/wezterm/dot-wezterm.lua
T
wesley db1e2c9d08 Customized tmux
Changed out the theme on tmux to one more maintained. Also set wezterm
to open tmux upon launch of the terminal.
2026-05-14 21:48:46 -04:00

16 lines
407 B
Lua

-- Pull in the wezterm API
local wezterm = require("wezterm")
-- This will hold the configuration
local config = wezterm.config_builder()
config.color_scheme = "tokyonight_storm"
config.window_background_opacity = 0.95
config.enable_tab_bar = false
config.initial_cols = 205
config.initial_rows = 45
config.font_size = 10
config.default_prog = { "tmux", "new-session", "-A", "-s", "main" }
return config