- repo name change and readme change

- removed markdownlint config args as it is no longer a arg. thanks markdownlint-cli2. love changing my workflow :>
    - play pause bind for i3
This commit is contained in:
2025-09-14 21:42:00 -05:00
parent b2aa06f910
commit b38cd5c376
6 changed files with 7 additions and 21 deletions

View File

@@ -1,14 +1,7 @@
local ok, lint = pcall(require, 'lint')
if ok then
lint.linters_by_ft = {
markdown = { 'markdownlint-cli2' },
}
-- ive spent like 3 hours getting this to work
local markdownlint = lint.linters['markdownlint-cli2']
markdownlint.args = {
"--config", vim.fn.expand("~/.markdownlint.yaml"),
"--",
lint.linters_by_ft = {
markdown = { "markdownlint" },
}
local lint_augroup = vim.api.nvim_create_augroup("lint", { clear = true })