Skip to content

Commit 1cdf6fb

Browse files
authored
Remove redundant require (nvim-lua#959)
1 parent 202910d commit 1cdf6fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/kickstart/plugins/lint.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ return {
4747
vim.api.nvim_create_autocmd({ 'BufEnter', 'BufWritePost', 'InsertLeave' }, {
4848
group = lint_augroup,
4949
callback = function()
50-
require('lint').try_lint()
50+
lint.try_lint()
5151
end,
5252
})
5353
end,

0 commit comments

Comments
 (0)