This commit is contained in:
Patrick Alvin Alcala 2025-07-14 11:20:27 +08:00
parent 9ae2c4e514
commit 31884b6759
9 changed files with 67 additions and 17 deletions

20
.wezterm.lua Normal file
View file

@ -0,0 +1,20 @@
-- 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.enable_wayland = true
-- Finally, return the configuration to wezterm:
return config