Commit graph

54 commits

Author SHA1 Message Date
Henrik Lissner
88bb045388
docs(*): replace all-the-icons with nerd-icons
Also colorizes the leading icon in notices.
2023-09-16 20:19:11 +02:00
Ellis Kenyő
9787022b83
refactor!: replace all-the-icons with nerd-icons
BREAKING CHANGE: This commit replaces all-the-icons with nerd-fonts. Any
all-the-icons-* function calls or variable references in your private
config will break and should be replaced with their nerd-icons-*
equivalent. That said, Doom will continue to install all-the-icons for
a while, so feel free to load it if you don't want to fully commit to
the change yet.

This change is happening because nerd-icon has wider support for GUI and
TUI Emacs; has a larger, more consistent selection of symbols; plus unicode
coverage.

Fix: #7368
Close: #6675
Close: #7364
2023-09-14 01:03:55 +02:00
TEC
5ac2a5258b docs: change link format 2022-10-05 01:01:19 +02:00
Ralf Beckmann
5a0f1fe1cc docs(mu4e): mention variable renamed in mu-1.8 2022-08-19 11:22:46 +02:00
Henrik Lissner
1abcf913aa
revert: fix(docs): set mode in file-local vars
emacs-straight/org-mode@e22b4eb7aa introduced a breaking change that
made it impossible to rely on .dir-locals.el to change org-mode buffers
in $EMACSDIR to doom-docs-org-mode (without infinite recursion), so we
used file-local variables in 7e400ab.

emacs-straight/org-mode@215de6176b reverted that change, so we can use
.dir-locals.el again, and this is my preference, since it requires less
boilerplate across our hundreds of org files.

Ref: emacs-straight/org-mode@215de6176b
Ref: emacs-straight/org-mode@e22b4eb7aa
Revert: 7e400abdc0
2022-08-07 19:08:07 +02:00
Henrik Lissner
7e400abdc0
fix(docs): set mode in file-local vars
Due to emacs-straight/org-mode@e22b4eb, a replacement major mode (for
org-mode) can no longer be specified from .dir-locals.el, as it spirals
into infinite recursion. Therefore, a mode: line is needed in all Doom
docs.

Ref: emacs-straight/org-mode@e22b4eb7aa
2022-08-03 02:46:33 +02:00
Henrik Lissner
1255315bfc
refactor(docs): replace nav menus with virtual one
Now that the header is dynamically generated (when doom-docs-mode is
active), a literal header is unnecessary.
2022-08-02 19:37:07 +02:00
Henrik Lissner
e77a45bc22
docs: use lowercase keywords
As per Org's new defaults, which we're adopting elsewhere, so may as
well adopt it here.
2022-08-02 16:23:43 +02:00
Dominic Martinez
839970c2de docs(mu4e): fix incorrect variable name in snippet
The variable name for toggling org-msg by default was changed in commit
6118ad5c12, leading to the provided
snippet not actually disabling org-msg.
2022-06-28 00:04:49 +02:00
Henrik Lissner
7246db457c docs: replace doom-source with doom-repo links
I will later use "source" to refer to module sources, so better we avoid
the terminology for now.
2022-02-01 18:55:27 +01:00
Anh T Nguyen
8fa1f4bb6b docs(mu4e): enable automatic email fetching 2022-01-27 18:42:19 +01:00
Henrik Lissner
88844e9cec docs: simplify internal docs links
Fewer links means less confusion.

- Merge doom-issue and doom-commit links into doom-ref (for auto-linking
  Issue/PR/commit references).
- Merge doom-module-source and doom-docs-source links into doom-source.
- Rename doom-report-issue to doom-report.
- Use '!' as the icon for module issues link.
- Remove doom-repo (replaced with "doom:*" in :lang org module).
- Add doomdir and emacsdir links to :lang org module.
2021-11-21 20:04:28 +01:00
Henrik Lissner
1decc38237 docs: fix module readme CREATED & SINCE attrs
Some were missing PR references, others had incorrect values for SINCE
and CREATED attributes. Also corrects the capitalization in some
SUBTITLEs.
2021-11-21 20:04:28 +01:00
Henrik Lissner
2dcef764f1 docs(:email): update READMEs to new format 2021-11-21 20:04:28 +01:00
Henrik Lissner
df64e5024b nit: remove email address
Ref: hlissner/doom-emacs-private@064c19884c
2021-11-14 17:38:23 +01:00
Itai Y. Efrat
777783c144 docs(mu4e): fix msmtp config in readme
- requires being in an (after! mu4e ...) to work
- minor fixes
2021-09-04 16:09:26 +03:00
Itai Y. Efrat
891628379d docs(mu4e): minor readme fixes
- use links instead of ~code~ markup for early project mentions
- fix install matrix
2021-08-06 03:16:52 -04:00
Ralf Beckmann
0df8d78bd7 docs(mu4e): explain how to fetch/sync mail in other ways
Add explanation on how to use other backends that are neither mbsync
nor offlineimap.
2021-08-03 23:04:38 -04:00
Ralf Beckmann
2fa7bee91f docs(mu4e): remove reference to non-existing variable
The variable +mu4e-mu4e-mail-path is not present in the codebase.
2021-08-03 23:04:38 -04:00
TEC
eaa392c00b
docs(mu4e): fix a typo (errors, plural)
Someone politely requested I add this to my PR on Discord ... why not.
2021-08-03 10:03:10 +08:00
TEC
6b690547b0
Mu4e: Add myself (tecosaur) as module maintainer 2021-07-31 01:22:21 +08:00
Liam Hupfer
2fd89a7eca
Mu4e: More contextual +mu4e-set-from-address-h
This hook should only be used when users define email aliases, or no
contexts are defined (in which case the list of personal addresses
should be used). Otherwise, the `:match-func` contexts feature is
sufficient.
2021-07-31 01:07:52 +08:00
TEC
2307ae5644
Mu4e: More robust Gmail account checking
Emails sent to an @gmail.com account may have been forwarded to a non-gmail mailbox.
Thus the current approach is over-eager.

Only checking @gmail on send, and then matching a user's maildir (not email) with
received messages is a more robust approach.

To accommodate this we switch `+mu4e-gmail-addresses' out for `+mu4e-gmail-accounts'.

Along the way `mu4e-index-cleanup' and `mu4e-index-lazy-check' customisations were
moved into the readme as a recommendation for Gmail-only users, to avoid causing
adverse effects for users who have non-gmail accounts too.
2021-07-30 01:56:52 +08:00
TEC
941d3e3608
Mu4e: Remove outdated content 2021-07-30 01:56:52 +08:00
TEC
16b4a31bf9
Mu4e: Recommend mbsync, and describe msmtp setup 2021-07-30 01:56:51 +08:00
TEC
7cf91ff61d
Mu4e: Further americanisation (colour → color) 2021-07-30 01:56:51 +08:00
TEC
7dff598725
Mu4e: Gate org-msg behind +org flag 2021-07-30 01:56:50 +08:00
TEC
1b9dce8fcd
Mu4e: Refactor install instructions into table 2021-07-30 01:56:50 +08:00
TEC
176252dea0
Mu4e: Readme, improve features/config content 2021-07-30 01:56:50 +08:00
TEC
06e02eec54
Mu4e: Reference @tecosaur's goimapnotify use 2021-07-30 01:56:50 +08:00
TEC
f3daba3471
Mu4e: add support for non-@gmail gmail accounts 2021-07-30 01:56:50 +08:00
TEC
c59a1ff498
Mu4e: cooperative lock control 2021-07-30 01:56:50 +08:00
TEC
fdc8effd0a
Mu4e: Readme, first pass of features section 2021-07-30 01:56:50 +08:00
TEC
3f1b27500a
Mu4e: Readme, note use of mu4e-alert
and document how-to disable packages (since it seems like disabling
org-msg) is a frequent request.
2021-07-30 01:56:49 +08:00
TEC
f7a2479064
Mu4e: Add nuance to Gmail-specific behaviour
for the non-gmail accounts out there
2021-07-30 01:56:49 +08:00
TEC
a974db04c4
Mu4e: further improve org-msg
- stylistic tweaks
- make accent colour easily user-settable
- scale LaTeX fragments appropriately
- make it easy to toggle org-msg-mode for one-off messages
2021-07-30 01:56:49 +08:00
Jeetaditya Chatterjee
bfe7b55a97 doc/adding another trouble shooting step
As Ubuntu does not include mu4e with the mu package I added a step to
tell the use to install mu4e and add it to their load-path. I have also
added a find command to find the directories likely to have mu4e in them
2020-08-17 02:56:15 +01:00
Henrik Lissner
bfb04102ef
email/mu4e: replace org-mu4e with org-msg
Fixes #3663
2020-08-01 14:16:43 -04:00
Shom Bandopadhaya
89bf9553e6 Dotfiles were refactored, pinned to arbitrary point with valid example 2020-05-29 02:12:41 -05:00
Shom Bandopadhaya
163d477eca Corrected intra-document links 2020-05-29 02:07:25 -05:00
Shom Bandopadhaya
d2376d8da1 Corrected intra-document links 2020-05-29 02:00:04 -05:00
Edmund Miller
4a3aacb219
Update mu4e home-manager config to permalink 2020-05-09 20:59:14 -05:00
Henrik Lissner
0c80ba1221
Update plugin list in email/mu4e readme 2020-04-27 14:09:06 -04:00
Alexander Graul
842283ec10 Update mu4e README, add mbsync config section 2020-04-24 16:56:03 +02:00
Henrik Lissner
a0fd06e96b
Mention 'void-function org-time-add' error on Gentoo 2020-04-18 20:22:40 -04:00
Yul3n
381e291e23 Added details to the mu4e documentation. 2020-04-16 09:24:54 +02:00
Henrik Lissner
b78fc4eb76
Minor refactor & reformatting across the board 2020-04-08 15:30:10 -04:00
Henrik Lissner
3dc4254f1c
email/mu4e: mention missing mu4e errors in readme 2020-04-01 21:14:58 -04:00
Sean Escriva
80a636cb7a
docs: update mu macos install cmd
`--with-emacs` arg no longer exists in the formula
2020-02-01 22:35:16 -05:00
AxelBohm
7733bfa97c mu4e is only available from the AUR 2019-12-09 10:54:27 +01:00