Skip to content

Commit

Permalink
Remove redundant require (nvim-lua#959)
Browse files Browse the repository at this point in the history
  • Loading branch information
tjkuson authored Jul 21, 2024
1 parent 202910d commit 1cdf6fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/kickstart/plugins/lint.lua
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ return {
vim.api.nvim_create_autocmd({ 'BufEnter', 'BufWritePost', 'InsertLeave' }, {
group = lint_augroup,
callback = function()
require('lint').try_lint()
lint.try_lint()
end,
})
end,
Expand Down

0 comments on commit 1cdf6fb

Please sign in to comment.