Thursday, June 23, 2011

Org-Mode: enable R support

Add the following code to the Emacs configuration file (.emacs in your home directory). If this file does not exist yet, create it:
;; active Babel languages
(org-babel-do-load-languages
 'org-babel-load-languages
 '((R . t)
   (emacs-lisp . nil)
   )) 
And restart emacs!

No comments :

Post a Comment