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 = {