feat(neovim): configure markdownlint

Prevent diagnostic messages for duplicate sibling headings and line
length.
This commit is contained in:
Oliver Davies 2023-11-21 16:16:40 +00:00
parent e05aadef34
commit 249f05860f
2 changed files with 10 additions and 1 deletions
system/shared/modules

View file

@ -243,4 +243,13 @@ in
shellcheck
];
};
home.file.".markdownlint.yaml".text = ''
default: true
line-length: false
no-duplicate-heading:
siblings_only: true
'';
}