mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-25 11:09:52 +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:
|
:END:
|
||||||
|
|
||||||
#+begin_src emacs-lisp :noweb yes :tangle yes :noweb-ref org-all
|
#+begin_src emacs-lisp :noweb yes :tangle yes :noweb-ref org-all
|
||||||
(when (featurep! :lang org)
|
(after! org
|
||||||
<<org>>)
|
<<org>>)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
@ -511,6 +511,9 @@ be based on their headings.
|
||||||
(use-package! mu4e
|
(use-package! mu4e
|
||||||
:bind (("<f9>" . mu4e))
|
:bind (("<f9>" . mu4e))
|
||||||
:config
|
:config
|
||||||
|
|
||||||
|
(require 'f)
|
||||||
|
|
||||||
(setq mu4e-maildir "~/Mail")
|
(setq mu4e-maildir "~/Mail")
|
||||||
|
|
||||||
(setq user-full-name "Correl Roush")
|
(setq user-full-name "Correl Roush")
|
||||||
|
@ -615,8 +618,10 @@ Manage background services
|
||||||
* Projectile
|
* Projectile
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(after! projectile
|
(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?
|
(let ((project-directories (-filter #'f-directory?
|
||||||
'("~/code"
|
'("~/code"
|
||||||
"~/git"))))
|
"~/git"))))
|
||||||
|
|
Loading…
Reference in a new issue