[Using Doom Emacs]
I’ve been trying to setup my Doom Emacs install, while I’ve managed to make lsp-mode work with Julia through this small piece:
(after! julia-mode
(add-hook! 'julia-mode-hook
(setq-local lsp-enable-folding t
lsp-folding-range-limit 100)))
I haven’t managed to make lsp detect the installed packages. I’ve setup my `lsp-julia-default-environment’ to mine but it still doesn’t work.
Doom Emacs uses lsp-julia
package for Emacs.
REPL extra: (Maybe an extra thread?) I frequently work with Julia in multithreaded mode but the startup delay and memory footprintm makes it so I don’t want it to be the default option every time I want to tinker with something. I’ve found that I could setup several possible Julia executables here, but I don’t know how to make it so the second one spawns a Julia REPL with the -p
option.