2024-03-15 12:47:44 -07:00
|
|
|
local wezterm = require 'wezterm';
|
|
|
|
|
local config = {
|
2025-10-08 18:29:19 -07:00
|
|
|
font = wezterm.font 'IBM Plex Mono',
|
2024-04-22 12:38:23 -07:00
|
|
|
color_scheme = 'GruvboxDarkHard',
|
2025-01-07 14:48:56 -08:00
|
|
|
window_decorations = "NONE",
|
2024-09-25 10:00:11 -07:00
|
|
|
|
2024-03-18 14:50:43 -07:00
|
|
|
warn_about_missing_glyphs = false,
|
2024-01-30 11:08:42 -08:00
|
|
|
check_for_updates = false,
|
2024-09-25 10:00:11 -07:00
|
|
|
|
2024-02-18 02:31:04 -08:00
|
|
|
hide_tab_bar_if_only_one_tab = true,
|
2024-09-25 10:00:11 -07:00
|
|
|
|
2025-02-23 15:55:01 -08:00
|
|
|
enable_wayland = true,
|
2025-01-18 19:57:02 -08:00
|
|
|
-- webgpu_power_preference = 'LowPower',
|
|
|
|
|
-- front_end = 'WebGpu',
|
2024-01-30 11:08:42 -08:00
|
|
|
}
|
2024-07-07 15:29:20 -07:00
|
|
|
|
2024-03-15 12:47:44 -07:00
|
|
|
return config
|