For those who are interested in keeping their emacs startup time down, you might want to mention:
If you are using the emacs package manager (say via (require 'package) in your init.el), then putting
(use-package julia-repl
:commands julia-repl julia-repl-mode
:config (load-library "julia-mode"))
in your init.el will delay loading julia-repl until it is needed.
For those who are interested in keeping their emacs startup time down, you might want to mention:
If you are using the emacs package manager (say via
(require 'package)in yourinit.el), then puttingin your
init.elwill delay loadingjulia-repluntil it is needed.