feat(wezterm): disable bell
This commit is contained in:
parent
b1131e7067
commit
b467917c95
2 changed files with 18 additions and 0 deletions
|
@ -16,6 +16,10 @@
|
||||||
:ss02 :ss03 :ss05 :ss07 :ss09
|
:ss02 :ss03 :ss05 :ss07 :ss09
|
||||||
:zero])
|
:zero])
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
;;; Window Options ;;;
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
(doto config
|
(doto config
|
||||||
(tset :freetype_render_target :Light)
|
(tset :freetype_render_target :Light)
|
||||||
(tset :window_background_opacity 0.8)
|
(tset :window_background_opacity 0.8)
|
||||||
|
@ -31,6 +35,14 @@
|
||||||
:bottom 0})
|
:bottom 0})
|
||||||
(tset :adjust_window_size_when_changing_font_size false))
|
(tset :adjust_window_size_when_changing_font_size false))
|
||||||
|
|
||||||
|
;;;;;;;;;;;;
|
||||||
|
;;; Bell ;;;
|
||||||
|
;;;;;;;;;;;;
|
||||||
|
|
||||||
|
(doto config
|
||||||
|
(tset :audible_bell :Disabled)
|
||||||
|
(tset :visual_bell {}))
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;
|
||||||
;;; Keybinds ;;;
|
;;; Keybinds ;;;
|
||||||
;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;
|
||||||
|
|
|
@ -55,6 +55,12 @@ M.window_padding = {
|
||||||
bottom = 0,
|
bottom = 0,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-----------
|
||||||
|
-- Bell ---
|
||||||
|
-----------
|
||||||
|
M.audible_bell = "Disabled"
|
||||||
|
M.visual_bell = {}
|
||||||
|
|
||||||
-------------
|
-------------
|
||||||
-- Tab bar --
|
-- Tab bar --
|
||||||
-------------
|
-------------
|
||||||
|
|
Loading…
Reference in a new issue