diff --git a/Home.md b/Home.md index 6f0939a..864c2c3 100644 --- a/Home.md +++ b/Home.md @@ -10,6 +10,23 @@ Welcome to the treefmt wiki! includes = ["*.nix"] ``` +### go + +``` +[formatter.golang] +command = "gofumpt" +options = ["-w"] +includes = ["*.go"] +``` + +### python + +``` +[formatter.python] +command = "black" +includes = ["*.py"] +``` + ### rust ```