Skip to content

Emacs editing mode for Mathematica and inferior shell.

Notifications You must be signed in to change notification settings

nazar-stasiv/wolfram-mode

 
 

Repository files navigation

wolfram-mode

wolfram-mode.el

Clone project into source-dir and configure init.el

(use-package wolfram-mode :ensure nil
  :load-path "source-dir"
  :mode ("\\.m\\'" . wolfram-mode)
  :init (lambda ()
          (org-babel-do-load-languages 'org-babel-load-languages
           (append org-babel-load-languages '((wolfram . t))))
          (setq wolfram-program "/usr/local/bin/math"
                wolfram-path "~/.WolframEngine/Applications"))
  :config (require 'ob-wolfram))

ob-wolfram.el

Evaluate source blocks with org babel

Solve[2x + 1 == 5, x]
{{x -> 2}}

About

Emacs editing mode for Mathematica and inferior shell.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Emacs Lisp 100.0%