Setting for org-mode emacs outside the .emacs file

I would like to create a project that will be published as HTML using org-mode.

I do not want to interfere with my .emacsproject definitions, and I was wondering where I could put the variable (setq org-publish-project-alist).

Is there any way to put it in the same directory?

+3
source share
3 answers

Ryan McGeary describes what I think is a good way to organize emacs startup files .

Update:
The domain emacsblog.org has expired :(
You can see a cached copy of the originally linked page.

+3
source

.emacs.d( whereever) .emacs.

- EDIT -

, .emacs

(load (expand-file-name "~/.emacs.d/lisp/personal-org-mode-stuff.el"))

~/.emacs.d/ lisp/personal-org-mode-stuff.el, .emacs

, lisp .

+2

, Emacs , . emacs , .emacs:

(setq custom-file "~/.emacs-custom.el")
(load custom-file 'noerror)

, , .emacs, ...

0

Source: https://habr.com/ru/post/1738386/


All Articles