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

Popular posts from this blog

c# - How to get the current UAC mode -

postgresql - Lazarus + Postgres: incomplete startup packet -

javascript - Ajax jqXHR.status==0 fix error -