aboutsummaryrefslogtreecommitdiff
path: root/config/nvim/lua/plugins/neoscroll.lua
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2022-12-16 23:42:26 +0200
committersrdusr <trevorgray@srdusr.com>2022-12-16 23:42:26 +0200
commit6371e90cc598e52b1d057d4b6d9a7b75d60e2fd0 (patch)
treef55d4d589f1a1e619ad67243a0421e08917b4f3c /config/nvim/lua/plugins/neoscroll.lua
parent8f4eae2782704484b498129a0a7d9044a4d73fbb (diff)
downloaddotfiles-6371e90cc598e52b1d057d4b6d9a7b75d60e2fd0.tar.gz
dotfiles-6371e90cc598e52b1d057d4b6d9a7b75d60e2fd0.zip
Removed config/nvim
Diffstat (limited to 'config/nvim/lua/plugins/neoscroll.lua')
-rw-r--r--config/nvim/lua/plugins/neoscroll.lua21
1 files changed, 0 insertions, 21 deletions
diff --git a/config/nvim/lua/plugins/neoscroll.lua b/config/nvim/lua/plugins/neoscroll.lua
deleted file mode 100644
index d122584..0000000
--- a/config/nvim/lua/plugins/neoscroll.lua
+++ /dev/null
@@ -1,21 +0,0 @@
-require("neoscroll").setup({
- easing_function = "quadratic",
-})
-
-local t = {}
--- Syntax: t[keys] = {function, {function arguments}}
--- Use the "sine" easing function
-t["<C-u>"] = { "scroll", { "-vim.wo.scroll", "true", "20", [['cubic']] } }
-t["<C-d>"] = { "scroll", { "vim.wo.scroll", "true", "20", [['cubic']] } }
--- Use the "circular" easing function
-t["<C-b>"] = { "scroll", { "-vim.api.nvim_win_get_height(0)", "true", "50", [['cubic']] } }
-t["<C-f>"] = { "scroll", { "vim.api.nvim_win_get_height(0)", "true", "50", [['cubic']] } }
--- Pass "nil" to disable the easing animation (constant scrolling speed)
-t["<C-y>"] = { "scroll", { "-0.10", "false", "100", nil } }
-t["<C-e>"] = { "scroll", { "0.10", "false", "100", nil } }
--- When no easing function is provided the default easing function (in this case "quadratic") will be used
-t["zt"] = { "zt", { "10" } }
-t["zz"] = { "zz", { "10" } }
-t["zb"] = { "zb", { "10" } }
-
-require("neoscroll.config").set_mappings(t)