reformated readme, added lint and markdown lint, fixed env.sh

This commit is contained in:
2025-06-02 16:59:01 -05:00
parent 354a2abbcd
commit edf3d20945
11 changed files with 95 additions and 18 deletions

View File

@@ -76,3 +76,14 @@ if ok then
lsp.setup()
end
local ok, null_ls = pcall(require, 'null-ls')
if ok then
null_ls.setup({
sources = {
null_ls.builtins.diagnostics.markdownlint_cli2,
},
})
end