| Commit message (Collapse) | Author | Files | Lines |
|
By default, when opening a link to some elisp code, org-mode prompts for
confirmation. I don't need to do that, I consider these functions safe.
Change-Id: I4b0f2a65d132bad5820690ae157454c981d09b8b
Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/619
Tested-by: CI
Reviewed-by: Franck Cuny <franck@fcuny.net>
|
|
Add a couple of functions in order to reset the check boxes for repeated
tasks. If the tasks has the property `RESET_CHECK_BOXES', when it's
marked as completed, the check boxes are unset.
Also configure the capture template for emails to only show when I'm in
a notmuch buffer.
Change-Id: I3511a0bb035ab57722b4409a19feb9a14dc85298
Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/618
Tested-by: CI
Reviewed-by: Franck Cuny <franck@fcuny.net>
|
|
This is not needed anymore, and it looks like the code is also formatted
differently for the agenda.
Change-Id: I391d0bfda9e4077df8c6ef7e2f7822b085ae4292
Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/617
Tested-by: CI
Reviewed-by: Franck Cuny <franck@fcuny.net>
|
|
I want some keywords related to reading (books, articles, feeds, etc).
Change-Id: I2c599606b7f537946200dc0e805856d51c9c5b0a
Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/616
Tested-by: CI
Reviewed-by: Franck Cuny <franck@fcuny.net>
|
|
Change-Id: I926607d5541dfd0455685acb324dd2b56484dfc1
Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/615
Reviewed-by: Franck Cuny <franck@fcuny.net>
Tested-by: CI
|
|
Add a new template for org-mode capture related to emails. It's useful
to create tasks based on an email, and the module `ol-notmuch' helps
with that: it extract the subject (among other stuff).
Change-Id: Id211c1f9952d1093dac8f7466ffd818537961ee9
Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/614
Tested-by: CI
Reviewed-by: Franck Cuny <franck@fcuny.net>
|
|
Add a few more things to the default configuration:
- set the MUA with the version of Emacs/notmuch
- cache the addresses
- define the tags used to archive emails
- set the fcc dir
- add a number of saved searches
- format the search result
Change-Id: Iec21e76e7ac4fce0d299e367b2c59bf8bbbe9718
Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/613
Tested-by: CI
Reviewed-by: Franck Cuny <franck@fcuny.net>
|
|
Change-Id: Ib927dcdcdab39e09823540a73cb90cddebde2185
Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/612
Tested-by: CI
Reviewed-by: Franck Cuny <franck@fcuny.net>
|
|
Only show entries from the last month, I don't need to see things that
are older.
Change-Id: I387eac7172fd44df28a513c1fbcc361d762c337a
Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/611
Tested-by: CI
Reviewed-by: Franck Cuny <franck@fcuny.net>
|
|
Change-Id: I25e307b3019ddffcbe83f954effd60a8b6fa4057
Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/610
Tested-by: CI
Reviewed-by: Franck Cuny <franck@fcuny.net>
|
|
Change-Id: I557fc12c1d00af891ec1607b4b921d3f38051016
Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/606
Tested-by: CI
Reviewed-by: Franck Cuny <franck@fcuny.net>
|
|
By pressing "m" I can create a task related to the current opened email.
Change-Id: I63b7cc69cd6ba4fe66e9fbb526e073f75e0a7b3b
Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/605
Tested-by: CI
Reviewed-by: Franck Cuny <franck@fcuny.net>
|
|
Define some saved searches to make it easier to navigate incoming
emails. I can jump to them by using the "j" key.
Change-Id: Ie7faed224de25b72134604dbcf82568e18c2044b
Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/604
Tested-by: CI
Reviewed-by: Franck Cuny <franck@fcuny.net>
|
|
Change-Id: Ic3ec94047e39618d9d1bbc5aa9afce8565b87208
Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/583
Tested-by: CI
Reviewed-by: Franck Cuny <franck@fcuny.net>
|
|
If I don't do this for some reasons now I can't rely on functions like
`consult-buffer'.
Change-Id: Iee6a051d66a9903bc3bebdc5762180f8816a5427
Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/582
Tested-by: CI
Reviewed-by: Franck Cuny <franck@fcuny.net>
|
|
Load eglot when Emacs starts, and delegate buffer formatting for
supported language to LSP.
The LSP for nix is using `nixpkgs-fmt' already, so there's no need to
configure this ourselves.
Change-Id: I6ee4adcc34b30c75031974c10a47fd3f7d240bed
|
|
Change-Id: I2b008d6039714475d7bbf487ac7674dd80b1bac4
|
|
tree-sitter is an incremental parsing system, and this change installs
the binding for Emacs. It improves significantly the code highlighting
system (as it does not rely on regex when the language is supported by
tree-sitter) and improves performance in general.
Change-Id: Ibc3d6c7133b323d6cc63ffb248cd83f71ac5c94a
|
|
I've been running into issues between flymake and eglot for a while now.
After modifying the file, flymake would report errors on possible typo I
made while editing, but once I've fixed them, the diagnostic would not
be updated until I either restart eglot or kick another flymake run.
After some debugging I'm pretty convinced this is due to the variable
`flymake-no-changes-timeout`. I've been running for a few hours without
it being set and I've not been able to reproduce the problem.
The other variables are set to their default value, this is not needed.
Change-Id: I770857a93b6d90193f39ee0dceaa19b0b928a3d8
|
|
Change-Id: I8cfd546b668035ff3627cd0ac6a2082cd3d2dea8
|
|
When using LSP to format the code, I keep running into weird behavior
with eglot. I think it's because the code is being formatted while
flymake is running but I need more evidence.
|
|
This is the tool recommend by the nix community to format nix code (see
[1]).
[1] https://github.com/nix-community/nixpkgs-fmt
|
|
Change-Id: I2313857ae41a7ac07907c1b23e8cc3068a50d86e
Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/288
|
|
Change-Id: I918f97cbf5dd69eefedc8b6794cbc3e253de4beb
Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/287
|