Skip to content

Commit 43c5060

Browse files
tjkusonAlessandro Poletti
authored andcommitted
Remove redundant require (nvim-lua#959)
1 parent 0965c0e commit 43c5060

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
@@ -62,7 +62,7 @@ return {
6262
vim.api.nvim_create_autocmd({ 'BufEnter', 'BufWritePost', 'InsertLeave' }, {
6363
group = lint_augroup,
6464
callback = function()
65-
require('lint').try_lint()
65+
lint.try_lint()
6666
end,
6767
})
6868
end,

0 commit comments

Comments
 (0)