From 6560899a70c9df08a1db879b62758fb21c5d32c1 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sun, 2 Jul 2023 17:18:56 +0800 Subject: [PATCH] wezterm: update IME and ASCII bell support --- wezterm/config/base.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/wezterm/config/base.lua b/wezterm/config/base.lua index 9919b00..07e8407 100644 --- a/wezterm/config/base.lua +++ b/wezterm/config/base.lua @@ -21,6 +21,18 @@ function module.apply_to_config(config) config.enable_wayland = true config.force_reverse_video_cursor = true + -- Use some IME. + config.use_ime = true + + -- Set up the visual bell. + config.audible_bell = "SystemBeep" + config.visual_bell = { + fade_in_function = 'EaseIn', + fade_in_duration_ms = 75, + fade_out_function = 'EaseOut', + fade_out_duration_ms = 75, + } + return config end