Adjust order of elisp expressions

Change custom-email-config config to start modes *after* the setting
have been applied...
This commit is contained in:
Evie Litherland-Smith 2023-10-25 09:20:22 +01:00
parent e35a36e0ef
commit 249806bf29
5 changed files with 6 additions and 4 deletions

View file

@ -1,6 +1,3 @@
(require 'notmuch)
(require 'notmuch-indicator)
(notmuch-indicator-mode +1)
(setq mail-user-agent 'notmuch-user-agent
notmuch-search-oldest-first nil
notmuch-show-logo nil
@ -20,5 +17,8 @@
(:name "all mail" :query "*" :key [97] :sort-order nil :search-type tree))
notmuch-indicator-refresh-count 60
notmuch-indicator-args '((:terms "tag:unread and tag:inbox" :label "󰮒 ")))
(require 'notmuch)
(require 'notmuch-indicator)
(notmuch-indicator-mode +1)
(provide 'custom-email-config)

View file

@ -7,4 +7,5 @@
(require 'elfeed-tube)
(elfeed-org)
(elfeed-tube-setup)
(provide 'custom-feed-config)

View file

@ -1,5 +1,4 @@
(setq direnv-always-show-summary nil)
(require 'treesit-auto)
(global-treesit-auto-mode +1)
(apheleia-global-mode +1)

View file

@ -12,4 +12,5 @@
org-refile-allow-creating-parent-nodes t
org-refile-targets '((nil :maxlevel . 3)
(org-agenda-files :maxlevel . 3)))
(provide 'custom-org-config)

View file

@ -5,4 +5,5 @@
(project-find-regexp "Find regexp")
(project-find-dir "Find directory")
(project-eshell "Eshell")))
(provide 'custom-project-config)