Disable bell sound on windows
This commit is contained in:
parent
fc95a69246
commit
ed2c715970
5
init.el
5
init.el
|
|
@ -6,8 +6,9 @@
|
|||
;; Set custom tab width here
|
||||
(defvar custom-tab-width 8)
|
||||
|
||||
;; Disable bell/messages sound
|
||||
(set-message-beep 'silent)
|
||||
;; Disable bell/messages sound on windows
|
||||
(when (eq window-system 'w32)
|
||||
(set-message-beep 'silent))
|
||||
|
||||
;; Temporary file config
|
||||
(setq backup-directory-alist
|
||||
|
|
|
|||
Loading…
Reference in New Issue