From 70a153d72350a4df3a2b5c3a1b01f0643e2dd3c8 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Fri, 4 Oct 2024 15:27:34 +0800 Subject: [PATCH] wezterm: update to make it work to latest version --- wezterm/config/base.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wezterm/config/base.lua b/wezterm/config/base.lua index 59b5354..917195c 100644 --- a/wezterm/config/base.lua +++ b/wezterm/config/base.lua @@ -5,8 +5,8 @@ function module.apply_to_config(config) -- Quick select-related options. Quite similar to Kitty hints which is -- nice. config.quick_select_patterns = { - "[0-9a-f]{7,40}", -- SHA1 hashes, usually used for Git. - "[0-9a-f]{7,64}", -- SHA256 hashes, used often for getting hashes for Guix packaging. + "[0-9a-f]{7,40}", -- SHA1 hashes, usually used for Git. + "[0-9a-f]{7,64}", -- SHA256 hashes, used often for getting hashes for Guix packaging. "sha256-.{44,128}", -- SHA256 hashes in Base64, used often in getting hashes for Nix packaging. } @@ -16,6 +16,7 @@ function module.apply_to_config(config) -- Enable some things for Wayland. if os.getenv "XDG_SESSION_TYPE" == "wayland" then config.enable_wayland = true + config.front_end = "WebGpu" config.force_reverse_video_cursor = true end