From 07fd4f1a6930dc62880b0fd7a0496270f4c2efd6 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 11 Apr 2024 01:39:11 -0500 Subject: more fit and finish work User Constants - move all file and directory constants into it's own file - create the directories and files if they don't exist - warn the user when not found/created General - remove duplicate dirvish go menu entry - remove xterm color in test code (it's already in eshell) - fixed org-drill not starting - fixing issue with auto-complete not working in eshell - adding playlists location for dirvish - moved all org-drill config into the use-package declaration - added drill-dir to user-constants - default ledger-file location changed; updated tasks - git ignore the persist folder - added more point values in fontaine menu - fix for gptel early key grab in authinfo.gpg - removed localrepo from reset script - remove magit-forge package - don't wait too long to bury-buffers - add setting native compile warnings to 'silent - fixed sdcv errors when looking up a word normally and in nov --- early-init.el | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'early-init.el') diff --git a/early-init.el b/early-init.el index 942345b0..69ba1b7d 100644 --- a/early-init.el +++ b/early-init.el @@ -37,14 +37,21 @@ ;; -------------------------------- Debug Flags -------------------------------- ;; debugging enabled during emacs startup. disabled after emacs startup. -(setq debug-on-error nil) ;; default nil. turn on to debug issues only. -(setq debug-on-quit nil) ;; debug on C-g (breaking out of hangs/freezes) +;; set these values now +(setq debug-on-error t) ;; default nil. turn on to debug issues only. +(setq debug-on-quit t) ;; debug on C-g (breaking out of hangs/freezes) -(add-hook 'after-init-hook +;; reset to these values after startup +(add-hook 'emacs-startup-hook (lambda () - (setq debug-on-error nil) + (setq debug-on-error nil) (setq debug-on-quit nil))) +;; ------------------------------ Compile Warnings ----------------------------- + +;; log warnings, but don't popup the warnings buffer +(setq native-comp-async-report-warnings-errors 'silent) + ;; --------------------------- Use Online Repos Flag --------------------------- ;; set to nil to only use localrepo or the local elpa-mirrors -- cgit v1.2.3