summaryrefslogtreecommitdiff
path: root/nvim/lua/config
diff options
context:
space:
mode:
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 },