emacs - Activate a single ELPA package out of many -
i want start emacs clean state , activate 1 package in ~/.emacs.d/elpa/
, not of them. specifically, need load bleeding-edge version of org-mode, while clean emacs loads built-in version. how do that?
to run emacs clean state, provide -q
option:
emacs -q
then run command eval-expression
, m-:, , enter following lisp expression:
(let ((package-load-list '((org t)))) (package-initialize))
package-load-list
variable holds packages load , activate when package-initialize
called. it's list of pairs in form of (package version)
. can put t
instead of version
, , newest version loaded.
Comments
Post a Comment