Minor upkeep.

This commit is contained in:
2026-09-01 12:58:43 +01:00
parent 5637582e6c
commit 5495317068
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -33,10 +33,10 @@ map("n", "\\", function()
end)
local neoscroll = require("neoscroll")
map("n", "<ScrollWheelUp>", function()
map({ "n", "i", "v" }, "<ScrollWheelUp>", function()
neoscroll.scroll(-0.05, { move_cursor = false, duration = 20 })
end)
map("n", "<ScrollWheelDown>", function()
map({ "n", "i", "v" }, "<ScrollWheelDown>", function()
neoscroll.scroll(0.05, { move_cursor = false, duration = 20 })
end)
map("n", "<C-Up>", function()