Update emacs.org

This commit is contained in:
Sakooooo 2023-12-23 20:45:08 +04:00 committed by GitHub
parent 631816cb53
commit 7ea0ed1bb5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -900,6 +900,7 @@ make sure to setup authinfo
:after magit) :after magit)
(setq auth-sources '("~/.authinfo")) (setq auth-sources '("~/.authinfo"))
#+end_src #+end_src
*** Direnv *** Direnv
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package direnv (use-package direnv
@ -1310,15 +1311,21 @@ This has to be one of the hardest things to configure on windows
I should just switch to Linux at this point :( I should just switch to Linux at this point :(
#+begin_src emacs-lisp #+begin_src emacs-lisp
(if (eq system-type 'windows-nt) (if (eq system-type 'gnu/linux)
(use-package mu4e (use-package mu4e
:load-path "C:/msys64/usr/local/share/emacs/site-lisp/mu4e" :load-path "//wsl.localhost/Debian/usr/share/emacs/site-lisp/elpa-src/mu4e-1.8.14"
:custom :custom
(mu4e-mu-binary "C:/msys64/usr/local/bin/mu.exe"))) (mu4e-mu-binary "wsl mu")))
;; we need this regardless of platform ;; global defaults
(use-package smtpmail ;; (use-package mu4e
:straight t) ;; :custom
;; mu4e-update-interval 300
;; )
;; we need this regardless of platform
(use-package smtpmail
:straight t)
#+end_src #+end_src
** Epg ** Epg
#+begin_src emacs-lisp #+begin_src emacs-lisp