Add julia-mode
This commit is contained in:
parent
54dcb9fd44
commit
adbd4eecd0
4 changed files with 31 additions and 0 deletions
12
modules/module-julia.el
Normal file
12
modules/module-julia.el
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue