updating plugins

This commit is contained in:
2026-01-22 22:34:34 -05:00
parent 2f0ed73d53
commit 8803de9fac
12 changed files with 107 additions and 232 deletions

View File

@@ -63,8 +63,14 @@ return {
python = { "pylint" },
dbml = { "dbml" },
sql = { "sqlfluff" },
html = { "htmlhint" },
java = { "checkstyle" },
tex = { "chktex" },
}
-- Set full path for chktex (TeX binaries may not be in Neovim's PATH)
lint.linters.chktex.cmd = "/Library/TeX/texbin/chktex"
local lint_augroup = api.nvim_create_augroup("lint", { clear = true })
api.nvim_create_autocmd({ "BufEnter", "BufWritePost", "InsertLeave" }, {