nvim/lua/plugins/editor_smooth_scroll.lua
RingOfStorms (Joshua Bell) c42f197307 WIP on new config
2024-05-01 01:14:46 -05:00

15 lines
303 B
Lua

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