Minor upkeep.
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
set -gx fish_greeting
|
set -gx fish_greeting
|
||||||
|
set -gx BED_SHELL (command -v fish)
|
||||||
|
|
||||||
function nix
|
function nix
|
||||||
if test "$argv[1]" = "develop"; and test (count $argv) -eq 1
|
if test "$argv[1]" = "develop"; and test (count $argv) -eq 1
|
||||||
|
|||||||
@@ -33,10 +33,10 @@ map("n", "\\", function()
|
|||||||
end)
|
end)
|
||||||
|
|
||||||
local neoscroll = require("neoscroll")
|
local neoscroll = require("neoscroll")
|
||||||
map("n", "<ScrollWheelUp>", function()
|
map({ "n", "i", "v" }, "<ScrollWheelUp>", function()
|
||||||
neoscroll.scroll(-0.05, { move_cursor = false, duration = 20 })
|
neoscroll.scroll(-0.05, { move_cursor = false, duration = 20 })
|
||||||
end)
|
end)
|
||||||
map("n", "<ScrollWheelDown>", function()
|
map({ "n", "i", "v" }, "<ScrollWheelDown>", function()
|
||||||
neoscroll.scroll(0.05, { move_cursor = false, duration = 20 })
|
neoscroll.scroll(0.05, { move_cursor = false, duration = 20 })
|
||||||
end)
|
end)
|
||||||
map("n", "<C-Up>", function()
|
map("n", "<C-Up>", function()
|
||||||
|
|||||||
Reference in New Issue
Block a user