lang/julia: add julia-repl package

Mentioned in #1836
This commit is contained in:
Henrik Lissner 2019-10-04 22:01:09 -04:00
parent 661290e8d7
commit 4761a7635a
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
3 changed files with 16 additions and 10 deletions

View file

@ -3,7 +3,7 @@
(use-package! julia-mode
:interpreter "julia"
:config
(set-repl-handler! 'julia-mode #'+julia/repl)
(set-repl-handler! 'julia-mode #'+julia/open-repl)
;; Borrow matlab.el's fontification of math operators
;; From <https://ogbe.net/emacsconfig.html>
@ -28,3 +28,7 @@
"[<>!]=?" OR
"\\)"))
1 font-lock-type-face)))))
(after! julia-repl
(add-hook 'julia-repl-hook #'julia-repl-use-emacsclient))