I'm just trying the Clojure LSP plugin in Intellij IDEA Community without knowing anything about Clojure or the plugin.
My goal is to start learning Clojure.
I installed the plugin and clojure-lsp via scoop, as per instructed.
I also tried to apply the steps here: https://clojure-lsp.io/clients/#generic-lsp4intellij - however, there is no "Language Server Protocol" tab, and I couldn't find an editable extension textfield...
I created a new project (deps.edn), which generated a main file:
(ns ray.main)
(defn -main [& args]
(println args)
0)
But Intellij doesn't recognize this as a runnable file, how do I run it?
EDIT, forgot to mention this:
EDIT 2:
This is what I get when I click the Restart LSP Server in Settings/Tools (with the default Server path):
This is what I get when I click the Restart LSP Server in Settings/Tools (with the scoop Server path):


