unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Emanuel Berg via Users list for the GNU Emacs text editor <help-gnu-emacs@gnu.org>
To: help-gnu-emacs@gnu.org
Subject: Re: Emacs Modular Configuration: the preferable way.
Date: Mon, 21 Jun 2021 04:56:04 +0200	[thread overview]
Message-ID: <87pmwgdiyj.fsf@zoho.eu> (raw)
In-Reply-To: CAGP6POK7bk9FEzXTe7PHafKT499e9g92CuNV2MLx_pn4z=fkdg@mail.gmail.com

Hongyi Zhao wrote:

> I noticed the following instructions/tools for Emacs modular
> configuration:
>
> https://www.emacswiki.org/emacs/DotEmacsModular
> https://www.emacswiki.org/emacs/DotEmacsStructuring
> https://github.com/emacs-jp/init-loader
>
> There are so many ways to do this. What's the
> preferable way?

My personal favorite is the method below, I don't know if
that's mentioned on any of your links.

Note that every file is mentioned explicitly, that means if
you are to search for an error (say do the so-called binary
search) you don't have to comment in and out code that might
have comments, headers, footers, and so on, instead you just
comment out one or more filenames, and when the bug or
misfeature is localized, it is as easy to enable them again.

(let*((emacs-dir "~/.emacs.d")
      (lisp-dir  (format "%s/lisp"       emacs-dir))
      (init-dir  (format "%s/emacs-init" emacs-dir))
      (erc-dir   (format "%s/erc"        init-dir))
      (gnus-dir  (format "%s/gnus"       init-dir))
      (ide-dir   (format "%s/ide"        init-dir))
      (w3m-dir   (format "%s/w3m"        init-dir))
      (dirs     (list
                 lisp-dir
                 init-dir
                 erc-dir
                 gnus-dir
                 ide-dir
                 w3m-dir
                 )))
  (dolist (d dirs)
    (push d load-path) )
  (let ((emacs-init-files '(
                            abc.el
                            align-incal.el
                            batch.el
                            bibtex-incal.el
                            bike.el
                            bmi.el
                            buc.el
                            buffer-menu.el
                            caps-back.el
                            close.el
                            console-keys.el
                            count.el
                            custom-vars.el
                            day.el
                            dired-incal.el
                            ecat-incal.el
                            echo-message.el
                            edit.el
                            elpa.el
                            emacs-shell.el
                            face.el
                            file-write-to.el
                            file.el
                            fill-incal.el
                            frame-size.el
                            geh.el
                            get-search-string.el
                            help-incal.el
                            info-incal.el
                            isbn-verify.el
                            issn-verify.el
                            iterate-files.el
                            jean.el
                            keys.el
                            kill-path.el
                            kill.el
                            latex.el
                            lights.el
                            linux-shell.el
                            list-quoted-functions.el
                            man-incal.el
                            match-data-format.el
                            math.el
                            measure.el
                            minor-modes.el
                            misc.el
                            mode-by-filename.el
                            mode-line.el
                            navigate-fs-keys.el
                            negative-subtraction.el
                            perm.el
                            printer.el
                            quit.el
                            random.el
                            re-make-list.el
                            replace-list.el
                            revert-buffer.el
                            scale.el
                            scroll.el
                            search-regexp-in-files.el
                            sequence-string.el
                            shell-cli.el
                            show-command.el
                            signal.el
                            sort-incal.el
                            spell.el
                            street.el
                            string.el
                            sudo-user-path.el
                            super.el
                            survivor.el
                            switch-to-buffer-regexp.el
                            switch-to-buffer.el
                            tabs.el
                            test-face.el
                            test.el
                            time-cmp.el
                            time-incal.el
                            time-insert.el
                            todo-did.el
                            tramp-incal.el
                            variance.el
                            vt.el
                            window-incal.el
                            wood.el
                            wrap-search.el
                            xsel.el
                            yank.el
                            )))
    (dolist (f emacs-init-files)
      (load-file (format "%s/%s" init-dir f) )))

  (let ((emacs-erc-init-files '(
                                erc-connect.el
                                erc-incal.el
                                erc-iterate.el
                                erc-kill.el
                                erc-misc.el
                                erc-spell.el
                                )))
    (dolist (f emacs-erc-init-files)
      (load-file (format "%s/%s" erc-dir f) )))

  (let ((emacs-gnus-init-files '(
                                 article.el
                                 browse.el
                                 gnus-incal.el
                                 gnus-server.el
                                 group-summary.el
                                 group.el
                                 mail-to-many.el
                                 mail.el
                                 mailrc.el
                                 message-dynamic.el
                                 message-incal.el
                                 moggle.el
                                 summary.el
                                 )))
    (dolist (f emacs-gnus-init-files)
      (load-file (format "%s/%s" gnus-dir f) )))

  (let ((emacs-ide-init-files '(
                                c-and-cpp.el
                                compile-incal.el
                                elisp.el
                                find-command.el
                                html.el
                                ide.el
                                lisp-incal.el
                                )))
    (dolist (f emacs-ide-init-files)
      (load-file (format "%s/%s" ide-dir f) )))

  (let ((emacs-w3m-init-files '(
                                bookmarks.el
                                dl.el
                                history.el
                                w3m-incal.el
                                w3m-keys.el
                                w3m-sem.el
                                w3m-tabs.el
                                w3m-unisearch.el
                                )))
    (dolist (f emacs-w3m-init-files)
      (load-file (format "%s/%s" w3m-dir f) )))
  )

https://dataswamp.org/~incal/conf/.emacs

-- 
underground experts united
https://dataswamp.org/~incal




  reply	other threads:[~2021-06-21  2:56 UTC|newest]

Thread overview: 86+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-21  1:40 Emacs Modular Configuration: the preferable way Hongyi Zhao
2021-06-21  2:56 ` Emanuel Berg via Users list for the GNU Emacs text editor [this message]
2021-06-21  6:40   ` Jean Louis
2021-06-21 16:31     ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-21 19:55       ` Jean Louis
2021-06-22  0:06         ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-21 10:14   ` Arthur Miller
2021-06-21 16:40     ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-21 18:25       ` [External] : " Drew Adams
2021-06-26  0:17         ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-26  0:31           ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-21 18:38       ` Arthur Miller
2021-06-22  0:03         ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-22  0:17           ` Jean Louis
2021-06-22  7:52           ` Arthur Miller
2021-06-26  6:58             ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-21 11:29   ` Eli Zaretskii
2021-06-21 12:45     ` Philip Kaludercic
2021-06-21 12:55       ` Eli Zaretskii
2021-06-21 13:59         ` [External] : " Drew Adams
2021-06-21 16:51           ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-21 18:08             ` Eli Zaretskii
2021-06-21 18:26             ` FW: " Drew Adams
2021-06-26  0:06               ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-21 14:11       ` tomas
2021-06-21 16:47         ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-21 18:06           ` Eli Zaretskii
2021-06-21 21:09             ` Jean Louis
2021-06-22 11:45               ` Eli Zaretskii
2021-06-22 12:29                 ` Jean Louis
2021-06-22 13:07                   ` Eli Zaretskii
2021-06-21 20:05           ` Stefan Monnier via Users list for the GNU Emacs text editor
2021-06-22  0:16             ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-21 21:07           ` Jean Louis
2021-06-22  0:33             ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-22  0:52               ` Printf and quoting in general, SQL injection in particular Jean Louis
2021-06-26  6:50                 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-26  7:30                   ` Yuri Khan
2021-06-26  7:57                     ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-26  9:37                     ` tomas
2021-06-28  7:02                   ` Jean Louis
2021-07-06  2:12                     ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-06  2:46                       ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-21 20:36         ` Emacs Modular Configuration: the preferable way Jean Louis
2021-06-21 21:15           ` Printf and quoting in general, SQL injection in particular [was: Emacs Modular Configuration: the preferable way] tomas
2021-06-21 21:29             ` Jean Louis
2021-06-22  0:31               ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-22  0:47                 ` Jean Louis
2021-06-26  6:31                   ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-28  6:56                     ` Jean Louis
2021-07-06  1:57                       ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-06 20:04                         ` Jean Louis
2021-07-06 20:19                           ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-22  0:23             ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-22 12:12               ` Eli Zaretskii
2021-06-22 12:37                 ` Jean Louis
2021-06-22 13:10                   ` Eli Zaretskii
2021-06-22 15:45                     ` Jean Louis
2021-06-22 16:04                       ` Eli Zaretskii
2021-06-22 18:01                         ` Jean Louis
2021-06-22 18:25                           ` Eli Zaretskii
2021-06-26  6:46                           ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-26  7:15                             ` Eli Zaretskii
2021-06-28  7:04                               ` Jean Louis
2021-07-06  2:05                                 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-06 20:09                                   ` Jean Louis
2021-07-06 20:23                                     ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-07  0:00                                       ` Jean Louis
2021-06-28  6:59                             ` Jean Louis
2021-07-06  2:02                               ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-06 20:06                                 ` Jean Louis
2021-07-06 20:20                                   ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-26  6:41                       ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-26  6:39                   ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-21 16:42       ` Emacs Modular Configuration: the preferable way Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-22 12:50       ` Lars Ingebrigtsen
2021-06-26  8:05         ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-21 20:02   ` Jean Louis
2021-06-22  0:11     ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-22  0:19       ` Jean Louis
2021-06-21  6:37 ` Jean Louis
2021-06-21  7:00   ` Hongyi Zhao
2021-06-21 10:06     ` Arthur Miller
2021-06-21 10:26       ` Hongyi Zhao
2021-06-21 11:10         ` Arthur Miller
2021-06-23  2:17           ` Hongyi Zhao

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87pmwgdiyj.fsf@zoho.eu \
    --to=help-gnu-emacs@gnu.org \
    --cc=moasenwood@zoho.eu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).