Add module-octave
This commit is contained in:
parent
4b25fb5944
commit
b7843732b1
2 changed files with 19 additions and 0 deletions
1
init.el
1
init.el
|
@ -67,6 +67,7 @@
|
|||
module-julia ; MATLAB, but fast
|
||||
module-latex ; for writing papers in Emacs
|
||||
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-processing ; for prototyping
|
||||
module-python ; beautiful is better than ugly
|
||||
|
|
18
modules/module-octave.el
Normal file
18
modules/module-octave.el
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue