14 lines
439 B
Lua
14 lines
439 B
Lua
return {
|
|
{
|
|
"karb94/neoscroll.nvim",
|
|
config = function()
|
|
require("neoscroll").setup({
|
|
-- All these keys will be mapped to their corresponding default scrolling animation
|
|
mappings = { "<C-u>", "<C-d>", "<C-b>", "<C-f>", "<C-y>", "<C-e>", "zt", "zz", "zb" },
|
|
hide_cursor = true, -- Hide cursor while scrolling
|
|
stop_eof = true, -- Stop at <EOF> when scrolling downwards
|
|
})
|
|
end,
|
|
},
|
|
}
|