about summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2022-06-09 09:16:50 -0500
committerCase Duckworth2022-06-09 09:16:50 -0500
commit21b5d80814520540454c1167ca0495dd023c54dd (patch)
treeb50bd959b44f7dbb6986514f4f88540a848913c8 /init.el
parentblep (diff)
downloademacs-21b5d80814520540454c1167ca0495dd023c54dd.tar.gz
emacs-21b5d80814520540454c1167ca0495dd023c54dd.zip
Fix startup complaining
Diffstat (limited to 'init.el')
-rw-r--r--init.el39
1 files changed, 20 insertions, 19 deletions
diff --git a/init.el b/init.el index f7fbe96..6c88148 100644 --- a/init.el +++ b/init.el
@@ -115,7 +115,6 @@
115 (add-to-list '+custom-variable-allowlist var)) 115 (add-to-list '+custom-variable-allowlist var))
116 ;; Load customizations now, and after init (to capture other possible 116 ;; Load customizations now, and after init (to capture other possible
117 ;; variables I want to load) XXX: this is dumb 117 ;; variables I want to load) XXX: this is dumb
118 (+custom-load-ignoring-most-customizations)
119 (+with-ensure-after-init 118 (+with-ensure-after-init
120 (+custom-load-ignoring-most-customizations)) 119 (+custom-load-ignoring-most-customizations))
121 (advice-add #'custom-buffer-create-internal :after #'+cus-edit-expand-widgets) 120 (advice-add #'custom-buffer-create-internal :after #'+cus-edit-expand-widgets)
@@ -507,21 +506,21 @@
507 (:require +finger) ; fixes `finger' to use var below 506 (:require +finger) ; fixes `finger' to use var below
508 (:option finger-X.500-host-regexps '(".") ; only send username 507 (:option finger-X.500-host-regexps '(".") ; only send username
509 ) 508 )
510 (require 'transient) 509 (with-eval-after-load 'transient
511 (transient-define-prefix net-utils () 510 (transient-define-prefix net-utils ()
512 "Networking utilities" 511 "Networking utilities"
513 ["Actions" 512 ["Actions"
514 ("p" "Ping" ping) 513 ("p" "Ping" ping)
515 ("i" "Ifconfig" ifconfig) 514 ("i" "Ifconfig" ifconfig)
516 ("w" "Iwconfig" iwconfig) 515 ("w" "Iwconfig" iwconfig)
517 ("n" "Netstat" netstat) 516 ("n" "Netstat" netstat)
518 ("a" "Arp" arp) 517 ("a" "Arp" arp)
519 ("r" "Route" route) 518 ("r" "Route" route)
520 ("h" "Nslookup host" nslookup-host) 519 ("h" "Nslookup host" nslookup-host)
521 ("d" "Dig" dig) 520 ("d" "Dig" dig)
522 ("s" "Smb Client" smbclient) 521 ("s" "Smb Client" smbclient)
523 ("t" "Traceroute" traceroute)]) 522 ("t" "Traceroute" traceroute)])
524 (:+key "C-z M-n" #'net-utils)) 523 (:+key "C-z M-n" #'net-utils)))
525 524
526(setup notmuch 525(setup notmuch
527 (:load-from "~/usr/share/emacs/site-lisp/") 526 (:load-from "~/usr/share/emacs/site-lisp/")
@@ -1051,9 +1050,11 @@
1051 1050
1052(setup (:straight bbdb) 1051(setup (:straight bbdb)
1053 (:straight bbdb-vcard) 1052 (:straight bbdb-vcard)
1054 (:require bbdb-autoloads 1053 (add-hook '+custom-after-load-hook
1055 bbdb) 1054 (defun +bbdb-load ()
1056 (bbdb-initialize 'gnus 'message)) 1055 (:require bbdb-autoloads
1056 bbdb)
1057 (bbdb-initialize 'gnus 'message))))
1057 1058
1058(setup (:straight (bongo :type git 1059(setup (:straight (bongo :type git
1059 :flavor melpa 1060 :flavor melpa