Add lua script and hidden config file. #20

Merged
shaun merged 1 commits from feature/disable_markdown_excessive_lint into master 2025-06-28 16:41:20 -04:00
2 changed files with 14 additions and 0 deletions
Showing only changes of commit 7be79aace7 - Show all commits

View File

@@ -0,0 +1,2 @@
config:
MD013: false

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", "--" },
},
},
},
}