From 2e11e3838ac2a182bbd97607d8cc359d6100f613 Mon Sep 17 00:00:00 2001 From: Madeleine Sydney Date: Mon, 27 Jan 2025 03:21:52 -0700 Subject: [PATCH] feat: Disable much of Emacs' GTK UI components --- users/crumb/programs/emacs/modules/syd-ui.el | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/users/crumb/programs/emacs/modules/syd-ui.el b/users/crumb/programs/emacs/modules/syd-ui.el index d8f6d35..e7681e3 100755 --- a/users/crumb/programs/emacs/modules/syd-ui.el +++ b/users/crumb/programs/emacs/modules/syd-ui.el @@ -17,5 +17,14 @@ ;; probably not what you want;" I personally don't see it, and it's ;; usually what I want. (vc-follow-symlinks t) + ;; Log native-compiler warnings, but don't display the + ;; buffer. Most of the warnings are "`X' is not known to + ;; be defined" which are typically nothing worth concerning. + (native-comp-async-report-warnings-errors 'silent)) + :config + ;; Disable the menu bar, scroll bar, and tool bar. + (menu-bar-mode -1) + (scroll-bar-mode -1) + (tool-bar-mode -1)) (provide 'syd-ui)