Adding back markdown linting. Ignore some rules.

This commit is contained in:
Shaun Setlock
2026-01-14 20:10:01 -05:00
parent d5b22a8991
commit 92c3655325
2 changed files with 3 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
local HOME = os.getenv("HOME")
return {
"mfussenegger/nvim-lint",
optional = true,
opts = {
linters = {
["markdownlint-cli2"] = {
args = { "--config", HOME .. "/.config/nvim/lua/plugins/markdownlint-cli2.yaml", "--" },
},
},
},
}