This commit is contained in:
2025-08-28 23:17:34 +02:00
parent fe3886fbdf
commit 20a49c3f58
31 changed files with 440 additions and 117 deletions

View File

@@ -1,7 +1,18 @@
-- lint
--
-- An asynchronous linter plugin for Neovim (>= 0.9.5)
-- complementary to the built-in Language Server Protocol support.
-- nvim-lint complements the built-in language server client for languages
-- where there are no language servers, or where standalone linters provide better results.
--
-- https://github.com/mfussenegger/nvim-lint
--
return {
{ -- Linting
'mfussenegger/nvim-lint',
enabled = false,
event = { 'BufReadPre', 'BufNewFile' },
config = function()
local lint = require 'lint'