Adjust order of elisp expressions
Change custom-email-config config to start modes *after* the setting have been applied...
This commit is contained in:
parent
e35a36e0ef
commit
249806bf29
|
@ -1,6 +1,3 @@
|
||||||
(require 'notmuch)
|
|
||||||
(require 'notmuch-indicator)
|
|
||||||
(notmuch-indicator-mode +1)
|
|
||||||
(setq mail-user-agent 'notmuch-user-agent
|
(setq mail-user-agent 'notmuch-user-agent
|
||||||
notmuch-search-oldest-first nil
|
notmuch-search-oldest-first nil
|
||||||
notmuch-show-logo nil
|
notmuch-show-logo nil
|
||||||
|
@ -20,5 +17,8 @@
|
||||||
(:name "all mail" :query "*" :key [97] :sort-order nil :search-type tree))
|
(:name "all mail" :query "*" :key [97] :sort-order nil :search-type tree))
|
||||||
notmuch-indicator-refresh-count 60
|
notmuch-indicator-refresh-count 60
|
||||||
notmuch-indicator-args '((:terms "tag:unread and tag:inbox" :label " ")))
|
notmuch-indicator-args '((:terms "tag:unread and tag:inbox" :label " ")))
|
||||||
|
(require 'notmuch)
|
||||||
|
(require 'notmuch-indicator)
|
||||||
|
(notmuch-indicator-mode +1)
|
||||||
|
|
||||||
(provide 'custom-email-config)
|
(provide 'custom-email-config)
|
||||||
|
|
|
@ -7,4 +7,5 @@
|
||||||
(require 'elfeed-tube)
|
(require 'elfeed-tube)
|
||||||
(elfeed-org)
|
(elfeed-org)
|
||||||
(elfeed-tube-setup)
|
(elfeed-tube-setup)
|
||||||
|
|
||||||
(provide 'custom-feed-config)
|
(provide 'custom-feed-config)
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
(setq direnv-always-show-summary nil)
|
(setq direnv-always-show-summary nil)
|
||||||
|
|
||||||
(require 'treesit-auto)
|
(require 'treesit-auto)
|
||||||
(global-treesit-auto-mode +1)
|
(global-treesit-auto-mode +1)
|
||||||
(apheleia-global-mode +1)
|
(apheleia-global-mode +1)
|
||||||
|
|
|
@ -12,4 +12,5 @@
|
||||||
org-refile-allow-creating-parent-nodes t
|
org-refile-allow-creating-parent-nodes t
|
||||||
org-refile-targets '((nil :maxlevel . 3)
|
org-refile-targets '((nil :maxlevel . 3)
|
||||||
(org-agenda-files :maxlevel . 3)))
|
(org-agenda-files :maxlevel . 3)))
|
||||||
|
|
||||||
(provide 'custom-org-config)
|
(provide 'custom-org-config)
|
||||||
|
|
|
@ -5,4 +5,5 @@
|
||||||
(project-find-regexp "Find regexp")
|
(project-find-regexp "Find regexp")
|
||||||
(project-find-dir "Find directory")
|
(project-find-dir "Find directory")
|
||||||
(project-eshell "Eshell")))
|
(project-eshell "Eshell")))
|
||||||
|
|
||||||
(provide 'custom-project-config)
|
(provide 'custom-project-config)
|
||||||
|
|
Loading…
Reference in a new issue