aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoridentity <135447733+ZharMeny@users.noreply.github.com>2025-02-03 19:19:20 +0000
committerGitHub <noreply@github.com>2025-02-03 11:19:20 -0800
commit814bb47486ac4fc0707f94882d212c599a1ac7ad (patch)
treeb0c581f84b61a645b3fde15e811c105817555643
parent39af130945b9a54d405a490748bac992460514d4 (diff)
Add nix-ts-mode support (#300)
Fixes #298 --------- Co-authored-by: Radon Rosborough <radon@intuitiveexplanations.com>
-rw-r--r--CHANGELOG.md2
-rw-r--r--apheleia-formatters.el1
2 files changed, 3 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3f9769f..561e30f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,8 @@ The format is based on [Keep a Changelog].
* `biome` ([#339]).
* `gdformat` for [gdscript](https://docs.godotengine.org/en/stable/tutorials/scripting/gdscript/gdscript_basics.html) ([#342]).
* `prettier-json-stringify` ([#183]).
+* `nix-ts-mode` buffers are now formatted with nixfmt like `nix-mode`
+ buffers are.
* Fix `foumolu` arguements
* Both `haskell-mode` and the newly added
`haskell-ts-mode` buffers are formatted with `fourmolu`
diff --git a/apheleia-formatters.el b/apheleia-formatters.el
index 43bc7bc..ac05fe7 100644
--- a/apheleia-formatters.el
+++ b/apheleia-formatters.el
@@ -362,6 +362,7 @@ rather than using this system."
;; try imposing a standard by default
(nasm-mode . asmfmt)
(nix-mode . nixfmt)
+ (nix-ts-mode . nixfmt)
(perl-mode . perltidy)
(php-mode . phpcs)
(purescript-mode . purs-tidy)