From 2562e90ac39b3ee19c735d3ffa66e0f8e1f26283 Mon Sep 17 00:00:00 2001 From: matt1432 Date: Thu, 7 Dec 2023 16:10:54 -0500 Subject: [PATCH] feat(nvim): add markdownlint config --- common/home/neovim/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/common/home/neovim/default.nix b/common/home/neovim/default.nix index 5ba0fcf2..7b89638e 100644 --- a/common/home/neovim/default.nix +++ b/common/home/neovim/default.nix @@ -133,6 +133,12 @@ in { # Bash bashIde.shellcheckPath = "${pkgs.shellcheck}/bin/shellcheck"; + + markdownlint.config = { + no-trailing-spaces = true; + no-multiple-blanks = false; + no-duplicate-heading = false; + }; }; };