kickstart.nvim/lua/custom/plugins/hlchunk.lua

14 lines
241 B
Lua
Raw Normal View History

2024-10-02 20:06:59 -04:00
return {
'shellRaining/hlchunk.nvim',
event = { 'BufReadPre', 'BufNewFile' },
config = function()
require('hlchunk').setup {
chunk = {
enable = true,
2024-10-16 19:02:42 -04:00
duration = 150,
delay = 1,
2024-10-02 20:06:59 -04:00
},
}
end,
}