https://github.com/neomutt/muttrc-mode-el
🔧 Emacs major mode for editing muttrc
https://github.com/neomutt/muttrc-mode-el
config emacs lisp neomutt syntax
Last synced: 11 days ago
JSON representation
🔧 Emacs major mode for editing muttrc
- Host: GitHub
- URL: https://github.com/neomutt/muttrc-mode-el
- Owner: neomutt
- License: gpl-2.0
- Created: 2018-09-13T23:29:57.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-11-25T13:12:17.000Z (6 months ago)
- Last Synced: 2025-04-01T07:04:23.639Z (about 2 months ago)
- Topics: config, emacs, lisp, neomutt, syntax
- Language: Emacs Lisp
- Homepage:
- Size: 73.2 KB
- Stars: 10
- Watchers: 7
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### muttrc-mode
major mode for editing muttrc#### Documentation:
To build the info file:
`makeinfo muttrc-mode.texi -o muttrc-mode.info`Install it to the system INFOPATH:
`install -o root -g root -m644 muttrc-mode.info /usr/share/info/muttrc-mode.info`#### Installation:
Add these lines to your Emacs config:
```elisp
(autoload 'muttrc-mode "muttrc-mode.el"
"Major mode to edit muttrc files" t)
(setq auto-mode-alist
(append '(("muttrc\\'" . muttrc-mode))
auto-mode-alist))
```
Install muttrc-mode.el to a directory somewhere in Emacs' load-path.#### Limitations:
- Multiline commands are not properly handled and their use can lead
to unexpected results.