25 lines
567 B
Lua
25 lines
567 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 = 13
|
|
config.colors = {}
|
|
|
|
config.window_background_opacity = .85
|
|
config.macos_window_background_blur = 40
|
|
config.win32_system_backdrop = "Acrylic"
|
|
|
|
-- Add configration here
|
|
|
|
config.enable_tab_bar = true
|
|
config.hide_tab_bar_if_only_one_tab = true
|
|
config.use_fancy_tab_bar = true
|
|
config.window_decorations = "RESIZE"
|
|
|
|
config.default_prog = { 'pwsh' }
|
|
|
|
return config
|