From c89b356601e875619e6e3215e94a17058737f301 Mon Sep 17 00:00:00 2001 From: Pedro Rey Anca Date: Sun, 16 Nov 2025 17:10:29 +0100 Subject: [PATCH] helix: Add config for markdown --- users/pedro/home-configuration/helix.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/users/pedro/home-configuration/helix.nix b/users/pedro/home-configuration/helix.nix index db6dc2a..0565666 100644 --- a/users/pedro/home-configuration/helix.nix +++ b/users/pedro/home-configuration/helix.nix @@ -16,6 +16,8 @@ }; vscode-json-language-server.command = "${pkgs.nodePackages.vscode-json-languageserver}/bin/vscode-json-languageserver"; + + marksman.command = "${pkgs.marksman}/bin/marksman"; }; language = [ @@ -48,6 +50,19 @@ ]; }; } + { + name = "markdown"; + auto-format = true; + formatter = { + command = "${pkgs.deno}/bin/deno"; + args = [ + "fmt" + "-" + "--ext" + "md" + ]; + }; + } ]; }; settings = {