Add julia-mode

This commit is contained in:
Henrik Lissner 2016-04-12 15:33:06 -04:00
parent 54dcb9fd44
commit adbd4eecd0
4 changed files with 31 additions and 0 deletions

12
modules/module-julia.el Normal file
View file

@ -0,0 +1,12 @@
;;; module-julia.el
(use-package julia-mode
:mode "\\.jl$"
:interpreter "julia"
:init
(define-repl! julia-mode narf/julia-repl)
(evil-set-initial-state 'inferior-julia-mode 'emacs)
(add-to-list 'editorconfig-indentation-alist '(julia-mode julia-indent-offset)))
(provide 'module-julia)
;;; module-julia.el ends here