Files
nixos-config/home/programs/neovim/lua/plugins/neoscroll-nvim.lua
2024-03-02 18:14:05 +01:00

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,
},
}