Skip to content

Commit 8e840a9

Browse files
committed
doc: refine installation
Signed-off-by: Brian McGee <[email protected]>
1 parent 6070b6f commit 8e840a9

File tree

2 files changed

+17
-10
lines changed

2 files changed

+17
-10
lines changed

docs/.vitepress/config.mts

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ export default defineConfig({
1616

1717
sidebar: [
1818
{ text: 'Quick Start', link: '/quick-start' },
19+
{ text: 'Installation', link: '/installation' },
1920
{ text: 'Overview', link: '/overview' },
2021
{ text: 'Usage', link: '/usage' },
2122
{ text: 'Formatter Specification', link: '/formatter-spec' },

docs/installation.md

+16-10
Original file line numberDiff line numberDiff line change
@@ -4,39 +4,45 @@ outline: deep
44

55
# Installation
66

7-
There are two options to install `treefmt`: by downloading the latest binary, or by compiling and building the tool from source.
7+
There are two options to install `treefmt`:
8+
9+
1. Downloading the latest binary
10+
2. Compiling and building it from source.
811

912
## Installing with a binary file
1013

1114
You can find the list of the latest binaries [here](https://github.com/numtide/treefmt/releases).
1215

1316
## Building from source
1417

15-
There are several ways to build `treefmt` from source. Your choice will depend on whether you're a [nix](https://github.com/NixOS/nix) user.
18+
There are several ways to build `treefmt` from source. Your choice will depend on whether you're a [nix](https://github.com/NixOS/nix) user or
19+
not.
1620

1721
### Non-Nix User
1822

1923
To try the project without building it, run:
2024

2125
```
22-
$ cargo run -- --help
26+
$ go run main.go --help
2327
```
2428

25-
The command will output the manual. You can run the tool in this manner with any other flag or option to format your project.
29+
The command will output the manual. You can run the tool in this manner with any other flag or option to format your
30+
project.
31+
32+
To build a binary, you need to have `go 1.22` installed. You can find instructions [here](https://go.dev/doc/install).
2633

27-
To build a binary, you need to have rust installed. You can install it with [rustup](https://rustup.rs/). Now, if you want to build the project, switch to the project root folder and run:
34+
Now, if you want to build the project, switch to the project root folder and run:
2835

2936
```
30-
$ cargo build
37+
$ go build
3138
```
3239

33-
After the successful execution of the cargo build command, you will find the `treefmt` binary in the target folder.
40+
After the successful execution of the build command, you will find the `treefmt` binary in the project root folder.
3441

3542
### Nix User
3643

37-
[Nix](https://github.com/NixOS/nix) is a package manager foundational for NixOS. You can use it in NixOS and in any other OS equally.
38-
39-
If you're using both `treefmt` and `nix`, you can go for [`treefmt-nix`](https://github.com/numtide/treefmt-nix), a special tool that makes installation and configuration of `treefmt` with `nix` easier.
44+
If you're using both `treefmt` and `nix`, you can go for [`treefmt-nix`](https://github.com/numtide/treefmt-nix), a wrapper that makes installation and
45+
configuration of `treefmt` with `nix` easier.
4046

4147
**Non-flake user**
4248

0 commit comments

Comments
 (0)