Remove redundant require (#959)

This commit is contained in:
Tom Kuson 2024-07-21 22:22:44 +02:00 committed by GitHub
parent 202910d3fa
commit 1cdf6fb377
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,7 +47,7 @@ return {
vim.api.nvim_create_autocmd({ 'BufEnter', 'BufWritePost', 'InsertLeave' }, { vim.api.nvim_create_autocmd({ 'BufEnter', 'BufWritePost', 'InsertLeave' }, {
group = lint_augroup, group = lint_augroup,
callback = function() callback = function()
require('lint').try_lint() lint.try_lint()
end, end,
}) })
end, end,