Files
dotfiles/nvim/lua/plugins/markdownlint-cli2.lua
Shaun Setlock 7be79aace7
Some checks failed
Build and Push Docker Image / build-push (push) Failing after 47m23s
Add lua script and hidden config file.
2025-06-28 16:37:15 -04:00

13 lines
267 B
Lua

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