Add module-octave

This commit is contained in:
Henrik Lissner 2016-08-28 23:13:19 +02:00
parent 4b25fb5944
commit b7843732b1
2 changed files with 19 additions and 0 deletions

View File

@ -67,6 +67,7 @@
module-julia ; MATLAB, but fast module-julia ; MATLAB, but fast
module-latex ; for writing papers in Emacs module-latex ; for writing papers in Emacs
module-lua ; one-based indices? one-based indices. module-lua ; one-based indices? one-based indices.
module-octave ; math isn't a choice. It's a way of life
module-php ; making php less painful to work with module-php ; making php less painful to work with
module-processing ; for prototyping module-processing ; for prototyping
module-python ; beautiful is better than ugly module-python ; beautiful is better than ugly

18
modules/module-octave.el Normal file
View File

@ -0,0 +1,18 @@
;;; module-octave.el
(use-package octave
:mode (("\\.m$" . octave-mode))
:config
;; (setq inferior-octave-program "/usr/local/bin/octave")
)
;; (use-package ac-octave
;; :config
;; (add-hook! octave-mode
;; (require 'ac-octave)
;; (setq ac-sources '(ac-source-octave))))
(use-package octave-inf :commands (run-octave))
(provide 'module-octave)
;;; module-octave.el ends here