nvim/lua/plugins/smooth_scroll.lua
RingOfStorms (Joshua Bell) ad2714c2b5 remove up down smooth
2024-05-07 16:24:02 -05:00

14 lines
268 B
Lua

return {
-- Smooth scrolling
"declancm/cinnamon.nvim",
event = "VeryLazy",
opts = {
default_keymaps = true,
max_length = 180,
default_delay = 2,
hide_cursor = true,
},
config = function(_, opts)
require("cinnamon").setup(opts)
end,
}