We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
(require 'package)
init.el
(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.
julia-repl
The text was updated successfully, but these errors were encountered:
Thanks -- I am actually using use-package, will update the README suggesting this as an option.
use-package
Sorry, something went wrong.
This is what I use with package.el
package.el
(use-package julia-repl :hook (julia-mode . julia-repl-mode))
If you are working on git repo, this works
(use-package julia-repl :load-path "~/src/julia-repl" :hook (julia-mode . julia-repl-mode))
No branches or pull requests
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.el
will delay loadingjulia-repl
until it is needed.The text was updated successfully, but these errors were encountered: