From f54f64909e9f6b8070ffff2116bee325fabcde29 Mon Sep 17 00:00:00 2001 From: Titouan Rigoudy Date: Wed, 15 Dec 2021 12:46:48 +0100 Subject: [PATCH] Disable annoying sound bell in tmux. --- tmux.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tmux.conf b/tmux.conf index 95a46cd..2f90f1b 100644 --- a/tmux.conf +++ b/tmux.conf @@ -26,6 +26,9 @@ set-window-option -g mode-keys vi set -g default-terminal "tmux" set-option -sa terminal-overrides ',xterm*:Tc' +# Disable sound bell. +set -g bell-action none + # List of plugins set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-sensible'