Skip to content

Commit

Permalink
Update clojure-lsp docs (#2226)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaroca authored Mar 29, 2023
1 parent 27a5861 commit ea8d2c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/src/language_servers.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,23 +36,23 @@ Follow installation instructions on [LSP-OmniSharp](https://github.com/sublimels

## Clojure

1. Download [clojure-lsp](https://github.com/snoe/clojure-lsp#installation).
1. Download [clojure-lsp](https://clojure-lsp.io/installation/).
2. Open `Preferences > Package Settings > LSP > Settings` and add the `"clojure-lsp"` client configuration to the `"clients"`:

```json
{
"clients": {
"clojure-lsp": {
"enabled": true,
"command": ["java", "-jar", "/PATH/TO/clojure-lsp"], // Update the PATH
"command": ["/PATH/TO/clojure-lsp"], // Update the PATH
"selector": "source.clojure",
"initializationOptions": {}
}
}
}
```

!!! info "See available [initializationOptions](https://github.com/snoe/clojure-lsp#initializationoptions)."
!!! info "See available [initializationOptions](https://clojure-lsp.io/settings/#initializationoptions)."

## CSS

Expand Down

0 comments on commit ea8d2c1

Please sign in to comment.