fix(tazjin/emacs): suppress emacs warnings in warnings buffer

Change-Id: I78e431da01dc900344044f1571e35565f8361f3a
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5281
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
This commit is contained in:
Vincent Ambo 2022-02-12 00:36:38 +03:00 committed by clbot
parent ed68ba6751
commit cae274808f

View file

@ -119,4 +119,13 @@
;; Don't wrap around when moving between buffers
(setq windmove-wrap-around nil)
;; Don't show me all emacs warnings immediately. Unfortunately this is
;; not very granular, as emacs displays most of its warnings in the
;; `emacs' "category", but without it every time I
;; fullscreen/unfullscreen the warning buffer destroys my layout.
;;
;; Warnings suppressed by this are still logged to the warnings
;; buffer.
(setq warning-suppress-types '((emacs)))
(provide 'look-and-feel)