diff --git a/lua/plugins/smooth_scroll.lua b/lua/plugins/smooth_scroll.lua new file mode 100644 index 0000000..aa8523b --- /dev/null +++ b/lua/plugins/smooth_scroll.lua @@ -0,0 +1,14 @@ +return { + -- Smooth scrolling + "declancm/cinnamon.nvim", + event = "VeryLazy", + opts = { + default_keymaps = true, + max_length = 150, + default_delay = 1, + hide_cursor = true, + }, + config = function(_, opts) + require("cinnamon").setup(opts) + end, +}