Skip to content

Commit 768acdb

Browse files
authored
feat: add gleam (#206)
1 parent 8db8970 commit 768acdb

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,7 @@ functions.
245245
* fourmolu
246246
* fprettify
247247
* gdformat
248+
* gleam
248249
* gofmt
249250
* gofumpt
250251
* google-java-format

examples/formatter-gleam.toml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Example generated by ../examples.sh
2+
[formatter.gleam]
3+
command = "gleam"
4+
excludes = []
5+
includes = ["*.gleam"]
6+
options = ["format"]

programs/gleam.nix

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{ lib, pkgs, config, ... }:
2+
let
3+
cfg = config.programs.gleam;
4+
in
5+
{
6+
meta.maintainers = [ "anntnzrb" ];
7+
8+
options.programs.gleam = {
9+
enable = lib.mkEnableOption "gleam";
10+
package = lib.mkPackageOption pkgs "gleam" { };
11+
};
12+
13+
config = lib.mkIf cfg.enable {
14+
settings.formatter.gleam = {
15+
command = cfg.package;
16+
options = [ "format" ];
17+
includes = [ "*.gleam" ];
18+
};
19+
};
20+
}

0 commit comments

Comments
 (0)