From 43e1f37c02f216a36312876d56a8f313aabcf07a Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 11 Apr 2024 17:29:10 -0500 Subject: additional bug fixing - stray cj/bookmark-set-and-save references replaced with bookmark-set - added warning level for errors - added an alternate elpa-mirrors location (git repos shouldn't be added inside a git repo) - added default font size to "Berkeley Only" and the default in fontaine - updated eww to search using frog find for readability - fixed typo on comments in user-constants - moved easy hugo configuration higher for easier accessibility - move "insert around" function to custom functions --- early-init.el | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'early-init.el') diff --git a/early-init.el b/early-init.el index 69ba1b7d..ae12365f 100644 --- a/early-init.el +++ b/early-init.el @@ -52,6 +52,9 @@ ;; log warnings, but don't popup the warnings buffer (setq native-comp-async-report-warnings-errors 'silent) +;; skip warnings but notify me about errors +(setq warning-minimum-level :error) + ;; --------------------------- Use Online Repos Flag --------------------------- ;; set to nil to only use localrepo or the local elpa-mirrors @@ -102,8 +105,10 @@ (defconst user-home-dir (getenv "HOME") "The user's home directory per the environment variable.") -(defconst elpa-mirror-location (concat user-emacs-directory ".elpa-mirrors/") - "The path to the elpa mirror location.") +(defconst elpa-mirror-location "~/.elpa-mirrors/" +"The path to the elpa mirror location.") + +(setq package-archives nil) ;; package-archives will be added below ;; LOCAL REPOSITORY (packages in version control) (if (file-accessible-directory-p (concat user-emacs-directory "localrepo")) -- cgit v1.2.3