mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-21 19:18:41 +00:00
[emacs] Defer org configuration
This commit is contained in:
parent
691a7893de
commit
8921966e28
1 changed files with 7 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
|||
:END:
|
||||
|
||||
#+begin_src emacs-lisp :noweb yes :tangle yes :noweb-ref org-all
|
||||
(when (featurep! :lang org)
|
||||
(after! org
|
||||
<<org>>)
|
||||
#+end_src
|
||||
|
||||
|
@ -511,6 +511,9 @@ be based on their headings.
|
|||
(use-package! mu4e
|
||||
:bind (("<f9>" . mu4e))
|
||||
:config
|
||||
|
||||
(require 'f)
|
||||
|
||||
(setq mu4e-maildir "~/Mail")
|
||||
|
||||
(setq user-full-name "Correl Roush")
|
||||
|
@ -615,8 +618,10 @@ Manage background services
|
|||
* Projectile
|
||||
#+begin_src emacs-lisp
|
||||
(after! projectile
|
||||
(setq projectile-switch-project-action #'magit-status)
|
||||
(require 'dash)
|
||||
(require 'f)
|
||||
|
||||
(setq projectile-switch-project-action #'magit-status)
|
||||
(let ((project-directories (-filter #'f-directory?
|
||||
'("~/code"
|
||||
"~/git"))))
|
||||
|
|
Loading…
Reference in a new issue