Files
sydnix/modules/home/users/msyds/emacs/lisp/syd/compilation.el
T
2025-11-23 04:06:39 -07:00

12 lines
378 B
EmacsLisp
Executable File

;;; -*- lexical-binding: t -*-
(setq
;; Log native-compiler warnings, but don't display the buffer. Most of the
;; warnings are "«symbol» is not known to be defined" which are typically
;; nothing worth concerning.
native-comp-async-report-warnings-errors 'silent
;; Scroll compilation buffer to follow output.
compilation-scroll-output t)
(provide 'syd/compilation)