Stats
Actions
Tags
From julia-lsp
Julia LanguageServer provides code intelligence for .jl files — diagnostics, go-to-definition, hover information, and autocompletion.
This LSP server requires juliato be installed on your system. Make sure it's available in your PATH before enabling.
Copy this JSON into your .lsp.json to enable this server
Add to your .lsp.json or plugin.json:
{
"lspServers": {
"julia": {
"command": "julia",
"extensionToLanguage": {
".jl": "julia"
},
"args": [
"--startup-file=no",
"--history-file=no",
"-e",
"using LanguageServer; runserver()"
]
}
}
}File extensions mapped to language identifiers
Server configuration and transport parameters
juliastdioCommand-line arguments passed to the server process
Initialization options and workspace settings
npx claudepluginhub alecloudenback/claudecodejulialsp