77fffe3265
Allow encryption key selection via minibuffer completion
...
This way, the usual completion mechanisms can be used — nice!
2025-03-14 18:15:50 +01:00
1ad53d298f
Jump to next message in Gnus when reaching the end
...
This is what I am used to, the option to stop at the end of a message did not convince me.
2025-03-12 17:06:13 +01:00
c50689c38c
Add some configuration for debugging the init file
...
From the use-package manuel, see info:use-package#Troubleshooting.
2025-03-11 17:27:17 +01:00
53a0944197
Remove obsolete .gitignore exclusion rule for bind-key
...
Not tracking that anymore.
This is a leftover from f205598 .
2025-03-11 17:14:58 +01:00
3dd3183a44
Bound movement in dired buffers
...
A nice Emacs 30.1 feature :)
2025-03-10 20:24:01 +01:00
f205598c67
Rely on builtin versions of use-package and bind-key
...
One less external dependency to take care of :)
2025-03-10 20:18:30 +01:00
a9b54d27a9
Replace some bind-key calls with use-package :bind declarations
...
Also remove some obsolete declarations along the way.
2025-03-09 20:22:22 +01:00
09a8706bb1
Add some stub configuration for remember
...
Inspired by https://baty.net/posts/2025/03/i-went-a-little-nuts-with-remember-mode-in-emacs/ . Not
using it yet, but it's nice to have it recorded here.
2025-03-09 14:54:51 +01:00
41c4295e82
Only initialize BBDB for message-mode
...
Being asked all the time whether to add the contact of the current message to BBDB is annoying.
2025-03-09 09:56:14 +01:00
7cbe776c7f
Fix use-package autoload configuration for Org utilities
2025-03-08 18:47:46 +01:00
0fe7ec5c1b
Clean up own utilities collection
...
Properly separate interactive commands from simple functions in use-package declaration, and remove
two unused functions.
2025-03-08 18:34:33 +01:00
40e98e5bfa
Allow wider git commit messages
...
No need to restrict to 72 characters per line.
2025-03-08 18:26:56 +01:00
47c7e664e5
Remove obsolete extra-symbol customization for TeX input method
2025-03-08 18:26:37 +01:00
e9a3778b74
Apply minor changes to Gnus configuration
...
Inspired by https://baty.net/posts/2025/03/using-gnus-for-email/ .
2025-03-08 16:50:17 +01:00
2e2b208c23
Remember why we load customizations so late
...
So I don't have to ponder on this again the next time I see this …
2025-03-08 16:37:16 +01:00
9132364fb7
Avoid customization conflicts between Customize and use-package
...
To this end, do not use :custom in use-package declaration, because
according to the documentation[1], `:custom` declarations can conflict
with settings done via `customize-option`. However, values set directly
in the configuration files should always be allowed to be overwritten by
custom settings done by the user – at least that's the general approach
of this Emacs configuration.
[1]: https://www.gnu.org/software/emacs/manual/html_mono/use-package.html#User-options
2025-03-08 09:10:57 +01:00
f2f98c3ac5
Do not restrict shell buffer display to frame sides
...
Give buffers running ephemeral `eshell` or `shell` sessions a name that
is different from the default name chosen by these commands, and only
restrict those ephemeral shell buffers to be displayed at the side.
This way, running the commands `eshell` and `shell` will yield windows
can be handled like any others and can be used for long-running
sessions.
2025-03-07 20:35:38 +01:00
5438a71cca
Tinker with Gnus' summary line format
...
Trying out some inspiration taken from https://baty.net/posts/2025/03/using-gnus-for-email/ .
2025-03-07 17:34:32 +01:00
575eb0e600
Increase Gnus registry size
...
Hitting the limits.
2025-03-07 17:29:11 +01:00
0ba2fc5fd7
Adapt some obsolete configuration for transition to Emacs 30
2025-03-02 18:29:20 +01:00
de123f7cea
Allow relocation of custom URL bookmark types
...
This is mostly copied from the current implementation in `bookmark.el`,
adapted to non-filename bookmarks.
Note that we are now using the `location` slot in bookmarks to store the
URLs, and relocating bookmarks will set the `filename` slot to `nil`.
2025-03-02 18:11:13 +01:00
76815c0171
Use more generic location slot for storing URLs in bookmarks
...
This might allow easier relocation of such bookmarks later on.
2025-03-02 17:38:42 +01:00
c74eed5df1
Remove obsolete usage of defadvice
...
This only affected some old Gnus advices. One of those should be
obsolete (I guess), the other has been transformed to use
`define-advice`.
2025-03-02 13:44:11 +01:00
0d1b624c72
Remove unused keybindings for bm
2025-02-26 13:06:49 +01:00
12870a5aef
Adjust default column with in magit repository listing
...
I need more space.
2025-02-26 10:54:08 +01:00
8998369a4c
Include status column in magit repository listing
...
To see whether repositories have unstaged changes.
This makes my `check-git-repos` function kind-of obsolete, which is good :)
2025-02-26 10:53:59 +01:00
a522f48dc5
Add some Org lint checkers for bookmark links
...
Code taken from `org-lint-invalid-id-link` and suitably modified.
2025-02-25 18:26:08 +01:00
3dbc9604d4
Mark bookmarks to EWW
2025-02-25 17:26:16 +01:00
fc58eb56f4
Resolve link generation conflict in bookmarked files
...
When a file has a bookmark, generating a link in that file (e.g. to the
line at point) results in a query from Org which link generating
function to use. This is annoying and interferes with the usual flow.
To remedy this, we simply try not to be too smart and just generate
links to bookmarks when in the bookmark menu.
2025-02-25 17:24:19 +01:00
ff30cbdf58
Always clear ledger transactions as a whole
...
Found via [1]. Nice!
[1]: https://mbork.pl/2025-02-22_Inserting_Ledger_transactions_even_faster
2025-02-23 13:00:09 +01:00
396ec4fca5
Ignore inaccessible directories when searching for changed git repos
2025-02-23 09:59:15 +01:00
be280ba373
Ensure bookmarks are loaded when opening via Org link
2025-02-23 09:38:48 +01:00
73a8e3be4b
Do not depend on autoloading db-org.el for bookmark links
...
Let's keep db-org a collection of autoloadable functions and move the
actual configuration of Org bookmark links to init.el.
2025-02-22 20:54:31 +01:00
795fcde3b8
Use default mechanism to store URL bookmarks directly after creation
...
Nicer :)
2025-02-22 20:54:31 +01:00
35cc0080d5
Set bookmark type for URLs
...
Just for display, nothing else should change with this (yet).
2025-02-22 20:54:31 +01:00
e32a67d666
Fix performance issue with file comparison on Windows
...
`file-equal-p` makes creating links too slow with bookmark links
enabled (which is the case by default).
2025-02-22 20:54:26 +01:00
4ddb17f204
Allow to run git-repo-change-checker command under old script name
...
Old habits die hard …
2025-02-22 10:24:24 +01:00
31e448d838
Add Org links to bookmarks
...
This is to remove redundant references in both bookmarks and links in
Org files.
The code is based on the original implementation of `ol-bookmark.el` by
Tokuya Kameshima, as found in [org-contrib][1].
[1]: bd39cca48b/lisp/ol-bookmark.el
2025-02-21 17:39:14 +01:00
168cc78844
Let project.el consider submodules as separate projects
...
I keep a tree of Git repositories organized as submodules in my home
directories and want each of those repositories to be considered a
separated project. The repositories that are indeed a proper part of a
superproject I can ignore.
2025-02-19 17:21:46 +01:00
2cbafcfbfc
Customize columns for listing magit repositories
...
Shrink fist column, because my repositories are usually not that long.
Version information is also less important than upstream divergence to
me, so let's move this behind.
2025-02-16 18:03:06 +01:00
003121ba0c
Add simple function to list changed git repositories
...
This is akin (in purpose) to `magit-list-repositories`, but also
descends into submodules. It's not as nice as
`magit-list-repositories`, though … more of a draft version right now.
This replaces a shell script with similar purpose.
2025-02-16 17:51:00 +01:00
1fedb571a3
Do not show overdue deadline items in Waiting For list
...
They will show up on the main agenda view anyway.
2025-02-15 18:43:17 +01:00
1ba7f00753
Sort TOPICs before NOTEs in project agenda
...
TOPICs are usually more important than NOTEs.
2025-02-14 17:03:55 +01:00
0d001c7b39
Sort list of known projects before persisting
...
This is to avoid commit clutter when tracking `project-list-file` in Git.
2025-01-19 09:53:41 +01:00
3a6d2005cb
Fix some flycheck warnings
2025-01-17 19:37:27 +01:00
6b6db486a7
Merge branch 'org-item-to-headline'
2025-01-17 18:12:09 +01:00
6e31e4a707
Clean up draft of Org list item conversion function
...
The template is still fixed, should it be customizable?
2025-01-17 18:10:20 +01:00
2960652d66
Draft function to convert Org items to headlines
...
This usually happens when I try to convert loose entrie in my refile
file into proper headlines.
Usage of Org capture functionality is inspired by Sacha Chua [1].
[1]: https://sachachua.com/blog/2020/12/org-mode-create-a-quick-timestamped-note-and-capture-a-screenshot-by-prefilling-a-capture-template-via-emacs-lisp/
2025-01-17 17:54:06 +01:00
3789a2b0e9
Revert "Shorten scheduled and deadline leaders in Org agenda for space"
...
This reverts commit 823139669e .
Turns out I need space for the range count of dates ranging multpile
days. Bummer.
2025-01-12 15:30:04 +01:00
823139669e
Shorten scheduled and deadline leaders in Org agenda for space
2025-01-12 15:26:32 +01:00