added wezterm config

This commit is contained in:
2025-07-07 19:18:16 +02:00
parent f661c3953c
commit 67c89b6882

23
.wezterm.lua Normal file
View File

@@ -0,0 +1,23 @@
-- Pull in the wezterm API
local wezterm = require 'wezterm'
-- This will hold the configuration.
local config = wezterm.config_builder()
-- This is where you actually apply your config choices.
-- For example, changing the initial geometry for new windows:
config.initial_cols = 120
config.initial_rows = 28
-- or, changing the font size and color scheme.
config.font_size = 10
config.color_scheme = 'AdventureTime'
config.color_scheme = "tokyonight_moon"
config.window_background_opacity = 0.8
config.enable_scroll_bar = true
-- Finally, return the configuration to wezterm:
return config