dotfiles/wezterm.lua

14 lines
305 B
Lua
Raw Normal View History

2024-05-21 13:52:10 +00:00
local wezterm = require 'wezterm'
local config = {}
config.font = wezterm.font_with_fallback {
{ family="IBM Plex Mono", weight="DemiBold" },
"FreeMono",
}
2024-05-21 13:52:10 +00:00
config.color_scheme = "Fairy Floss Dark (Gogh)"
config.initial_cols = 140
config.initial_rows = 50
config.enable_wayland = false
return config