Files
dotfiles/home_root/.wezterm.lua
2025-03-13 13:25:04 -07:00

20 lines
419 B
Lua

-- Pull in wezterm API
local wezterm = require("wezterm")
-- This will hold the configuration
local config = wezterm.config_builder()
config.font = wezterm.font("VictorMono Nerd Font")
config.font_size = 18
config.colors = {}
config.window_background_opacity = 0.85
config.macos_window_background_blur = 40
-- Add configration here
config.enable_tab_bar = false
config.window_decorations = "RESIZE"
return config