mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
tweak: suppress defvaralias warnings
This commit is contained in:
@ -476,6 +476,12 @@ Otherwise, `en/disable-command' (in novice.el.gz) is hardcoded to write them to
|
||||
;; useful, and often come from third party packages.
|
||||
(setq ad-redefinition-action 'accept)
|
||||
|
||||
;; Ignore warnings about "existing variables being aliased". Otherwise the user
|
||||
;; gets very intrusive popup warnings about our (intentional) uses of
|
||||
;; defvaralias.
|
||||
(after! warnings
|
||||
(add-to-list 'warning-suppress-types '(defvaralias)))
|
||||
|
||||
;; Reduce debug output unless we've asked for it.
|
||||
(setq debug-on-error init-file-debug
|
||||
jka-compr-verbose init-file-debug)
|
||||
|
@ -14,6 +14,7 @@
|
||||
init-file-debug
|
||||
jka-compr-verbose
|
||||
(message-log-max . 16384)
|
||||
(warning-suppress-types . nil)
|
||||
url-debug
|
||||
use-package-verbose)
|
||||
"A list of variable to toggle on `doom-debug-mode'.
|
||||
|
Reference in New Issue
Block a user