Skip to content

Commit

Permalink
Provide valid Dune link, clarify ocaml-lsp-server in "Installing OCam…
Browse files Browse the repository at this point in the history
…l" Doc (#1648)

---------

Co-authored-by: Christine Rose <[email protected]>
  • Loading branch information
sabine and christinerose authored Oct 16, 2023
1 parent 57fb362 commit 9b25dd3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions data/tutorials/getting-started/1_00_install_OCaml.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,14 +143,14 @@ To learn more about Diskuv OCaml, see the [official Diskuv OCaml documentation](
Now that we've successfully installed the OCaml compiler and the opam package manager, let's install some of the [OCaml Platform tools](https://ocaml.org/docs/platform), which you'll need to get the full developer experience in OCaml:

- [UTop](https://github.com/ocaml-community/utop), a modern interactive toplevel (REPL: Read-Eval-Print Loop)
- [Dune](https://dune.readthedocs.io/en/stable/~), a fast and full-featured build system
- [Merlin](https://ocaml.github.io/merlin/) and [`ocaml-lsp-server`](https://github.com/ocaml/ocaml-lsp). Power tools for VS Code, Vim, or Emacs
- [Dune](https://dune.build), a fast and full-featured build system
- [`ocaml-lsp-server`](https://github.com/ocaml/ocaml-lsp) implements the Language Server Protocol to enable editor support for OCaml, e.g., in VS Code, Vim, or Emacs. Under the hood, it uses [Merlin](https://ocaml.github.io/merlin/).
- [`odoc`](https://github.com/ocaml/odoc) to generate documentation from OCaml code
- [OCamlFormat](https://opam.ocaml.org/packages/ocamlformat/) to automatically format OCaml code

All these tools can be installed using a single command:
```shell
$ opam install dune merlin ocaml-lsp-server odoc ocamlformat utop
$ opam install dune ocaml-lsp-server odoc ocamlformat utop
```

You're now all set and ready to start hacking.
Expand Down

0 comments on commit 9b25dd3

Please sign in to comment.