Fixed issue with emacs mail not working on darwin
This commit is contained in:
parent
503a656479
commit
e6e927ae0d
@ -328,6 +328,17 @@ Undo tree's use is self explanatory. While the built-in Emacs undo system is fin
|
|||||||
|
|
||||||
This is a list of installed packages not included in any other category.
|
This is a list of installed packages not included in any other category.
|
||||||
|
|
||||||
|
** MacOS Environment Fix
|
||||||
|
|
||||||
|
When using emacs on MacOS, the environment variables are not synced properly and therefore require a separate package to fix this. In this case, this package is the ~exec-path-from-shell~.
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
;(use-package exec-path-from-shell
|
||||||
|
;:config
|
||||||
|
;(when (memq window-system '(mac ns x))
|
||||||
|
;(exec-path-from-shell-initialize)))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
** Perspective
|
** Perspective
|
||||||
|
|
||||||
*Perspective* is a package to help with managing buffers. It allows for multiple /workspaces/ or /perspectives/ which each contain their own sub list of buffers.
|
*Perspective* is a package to help with managing buffers. It allows for multiple /workspaces/ or /perspectives/ which each contain their own sub list of buffers.
|
||||||
@ -460,17 +471,6 @@ Alert is another library that better implements system notifications through ema
|
|||||||
'libnotify)))
|
'libnotify)))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** MacOS Environment Fix
|
|
||||||
|
|
||||||
When using emacs on MacOS, the environment variables are not synced properly and therefore require a separate package to fix this. In this case, this package is the ~exec-path-from-shell~.
|
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
|
||||||
(use-package exec-path-from-shell
|
|
||||||
:config
|
|
||||||
(when (memq window-system '(mac ns x))
|
|
||||||
(exec-path-from-shell-initialize)))
|
|
||||||
#+end_src
|
|
||||||
|
|
||||||
* Builtin Package Config
|
* Builtin Package Config
|
||||||
** Dired
|
** Dired
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
IMAPAccount gmail
|
IMAPAccount gmail
|
||||||
Host imap.gmail.com
|
Host imap.gmail.com
|
||||||
User jadenprovost@gmail.com
|
User jadenprovost@gmail.com
|
||||||
PassCmd "bw-load && bw get password 'Emacs Gmail'"
|
PassCmd "export BW_SESSION=$(cat $HOME/.bw_session) && bw get password 'Emacs Gmail'"
|
||||||
SSLType IMAPS
|
SSLType IMAPS
|
||||||
SSLVersions TLSv1.2
|
SSLVersions TLSv1.2
|
||||||
AuthMechs PLAIN
|
AuthMechs PLAIN
|
||||||
|
Loading…
x
Reference in New Issue
Block a user