Add lua script and hidden config file.
Some checks failed
Build and Push Docker Image / build-push (push) Failing after 47m23s

This commit was merged in pull request #20.
This commit is contained in:
Shaun Setlock
2025-06-28 16:28:47 -04:00
parent 75c9903022
commit 7be79aace7
2 changed files with 14 additions and 0 deletions

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