julia lsp too slow to use in helix #13819
Replies: 3 comments 2 replies
-
|
Other information: julia version 1.11.5 Linux turing 6.15.2-arch1-1 #1 SMP PREEMPT_DYNAMIC Tue, 10 Jun 2025 21:32:33 +0000 x86_64 GNU/Linux using no config in languages.toml for julia Configured language servers: |
Beta Was this translation helpful? Give feedback.
-
|
Hello, Do you have many packages installed in the default Julia environment? This often slows things down significantly, as inter-dependencies between these packages cause a lot of recompilation. Try this:
[language-server]
julia = { command = "julia", timeout = 60, args = [ "--project=@lsp", "--startup-file=no", "--history-file=no", "--quiet", "-e", "using LanguageServer; runserver()" ] }The larger than default I have not tried using LSP with this setup, but I hope this helps! |
Beta Was this translation helpful? Give feedback.
-
|
Julia # Bootstrapping our environment from Project.toml and Manifest.toml
using Pkg
Pkg.activate(@__DIR__)
Pkg.instantiate()
using CSV, DataFrames, StringEncodings, Dates, Logging, XLSX, StatsBase |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
output of
hx -v --log log.txt:Beta Was this translation helpful? Give feedback.
All reactions