summaryrefslogtreecommitdiff
path: root/nvim/lua/config
diff options
context:
space:
mode:
authorSkladnayazebra <skladnayazebra@gmail.com>2026-02-25 21:12:15 +0100
committerSkladnayazebra <skladnayazebra@gmail.com>2026-02-25 21:12:15 +0100
commit7f42d5b36723f05295b29d00b4c21319b3974b8d (patch)
tree0a76064944e4afbcdef401eed7ab01f9fbbf39e5 /nvim/lua/config
parent089c3ad2caf4e19124c66f13c65d04d9852f2e73 (diff)
Add neoscroll
Diffstat (limited to 'nvim/lua/config')
-rw-r--r--nvim/lua/config/lazy.lua15
1 files changed, 10 insertions, 5 deletions
diff --git a/nvim/lua/config/lazy.lua b/nvim/lua/config/lazy.lua
index e2e9ed5..807d35c 100644
--- a/nvim/lua/config/lazy.lua
+++ b/nvim/lua/config/lazy.lua
@@ -73,11 +73,16 @@ require("lazy").setup({
end,
},
require("config.blink-cmp"),
- -- when hitting Enter between brackets, create newline between with tab:
- -- {
- -- > like this
- -- }
- -- { "jiangmiao/auto-pairs" },
+ -- smooth scrolling
+ {
+ "karb94/neoscroll.nvim",
+ opts = {
+ duration_multiplier = 0.3,
+ mappings = {
+ '<C-d>', '<C-u>'
+ },
+ }
+ },
},
install = { colorscheme = { "gruvbox" } },
checker = { enabled = true },