Files
dotfiles/wezterm/dot-wezterm.lua
Wesley Irvin b1435388ae Misc Changes
Made misc changes to clean up some aliases and added zoxide support.

Reviewed-on: #29
2026-01-13 17:45:12 -05:00

15 lines
339 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
return config