feat(wezterm): disable bell

This commit is contained in:
reo101 2024-07-21 17:47:55 +03:00
parent b1131e7067
commit b467917c95
Signed by: reo101
GPG key ID: 675AA7EF13964ACB
2 changed files with 18 additions and 0 deletions

View file

@ -16,6 +16,10 @@
:ss02 :ss03 :ss05 :ss07 :ss09
:zero])
;;;;;;;;;;;;;;;;;;;;;;
;;; Window Options ;;;
;;;;;;;;;;;;;;;;;;;;;;
(doto config
(tset :freetype_render_target :Light)
(tset :window_background_opacity 0.8)
@ -31,6 +35,14 @@
:bottom 0})
(tset :adjust_window_size_when_changing_font_size false))
;;;;;;;;;;;;
;;; Bell ;;;
;;;;;;;;;;;;
(doto config
(tset :audible_bell :Disabled)
(tset :visual_bell {}))
;;;;;;;;;;;;;;;;
;;; Keybinds ;;;
;;;;;;;;;;;;;;;;

View file

@ -55,6 +55,12 @@ M.window_padding = {
bottom = 0,
}
-----------
-- Bell ---
-----------
M.audible_bell = "Disabled"
M.visual_bell = {}
-------------
-- Tab bar --
-------------