You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/installation.md
+16-10
Original file line number
Diff line number
Diff line change
@@ -4,39 +4,45 @@ outline: deep
4
4
5
5
# Installation
6
6
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.
8
11
9
12
## Installing with a binary file
10
13
11
14
You can find the list of the latest binaries [here](https://github.com/numtide/treefmt/releases).
12
15
13
16
## Building from source
14
17
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.
16
20
17
21
### Non-Nix User
18
22
19
23
To try the project without building it, run:
20
24
21
25
```
22
-
$ cargo run -- --help
26
+
$ go run main.go --help
23
27
```
24
28
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).
26
33
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:
28
35
29
36
```
30
-
$ cargo build
37
+
$ go build
31
38
```
32
39
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.
34
41
35
42
### Nix User
36
43
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
0 commit comments