mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-09 12:57:25 -05:00
Add julia-mode
This commit is contained in:
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
|
Reference in New Issue
Block a user