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
|
;; Set custom tab width here
|
||||||
(defvar custom-tab-width 8)
|
(defvar custom-tab-width 8)
|
||||||
|
|
||||||
;; Disable bell/messages sound
|
;; Disable bell/messages sound on windows
|
||||||
(set-message-beep 'silent)
|
(when (eq window-system 'w32)
|
||||||
|
(set-message-beep 'silent))
|
||||||
|
|
||||||
;; Temporary file config
|
;; Temporary file config
|
||||||
(setq backup-directory-alist
|
(setq backup-directory-alist
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue