Questions tagged [customize]
Use this tag for questions about modifying a particular action or task within Emacs.
243 questions
1 vote
1 answer
59 views
Given a symbol defined with a defcustom form, how to programmatically identify its group(s)?
How to identify the parent group(s) of a symbol defined with a defcustom form with elisp code? For instance I would like to use or write a function custom-group-of such that (custom-group-of 'delete-...
0 votes
1 answer
70 views
Install packages without prog-mode-hooks
I have an existing init.el file but an otherwise "clean" Emacs - the .config/emacs directory is empty. When I start Emacs I naturally get warning messages about missing packages which are ...
0 votes
0 answers
73 views
mode-line-format: How to ensure `:eval`'d code is evaluated when necessary?
I'm trying to show full b/B bytes, l/L lines, c/C columns in the mode line (where n/N denotes "point is at n of N total), all zero-based, with both sides of each fraction padded as needed to keep ...
0 votes
0 answers
29 views
How to share custom-set-variables settings with colleagues?
In my .emacs file, I have some settings that I need to share with my colleagues to ensure that other tools I've shared in a Git repository work correctly. I was thinking of moving these settings to a ...
3 votes
1 answer
205 views
Lowering org-pomodoro sound volume
The default "bell.wav" sound file included in the org-pomodoro package that plays when an interval is concluded is much louder than other sounds on my computer. I'm trying to figure out how ...
0 votes
3 answers
134 views
Method separators
Does anybody know of a function/package/etc. to draw visual separators between "high-level" blocks of code, like class and function definitions? Similar to the horizontal lines in these ...
3 votes
2 answers
457 views
How do I set package-vc-selected-packages to use a specific commit?
Emacs 29.1 introduced new functions to install packages directly from source. Configuring it to download from the latest commit works fine, but I can't find how to download from a specific commit ...
0 votes
1 answer
768 views
Changing some attributes of face `mode-line`
I want to change some attributes for the mode-line using elisp file calls. But I want to use exclusively the code that I write myself, without having emacs write to my init file. Although I have been ...