karb94 / neoscroll.nvim

Smooth scrolling neovim plugin written in lua
MIT License
1.46k stars 36 forks source link

Doesn't get loaded with Lazy.nvim. Event with lazy = false #110

Open hrqmonteiro opened 2 months ago

hrqmonteiro commented 2 months ago

Plugin is not loaded, therefore i cannot use it

image image

Pressing the keys doesn't do anything, the scroll effect doesn't work

karb94 commented 2 months ago

The plugin config you provided is not valid, neoscroll.setup() only takes a single argument. Try with the minimal configuration from the README first:

return {
  "karb94/neoscroll.nvim",
  config = function ()
    require('neoscroll').setup({})
  end
}

Check your mappings, for example to check who defined the <c-u> mapping use verbose map <c-u>.