Aasim-A/scrollEOF.nvim

Disable in some filetype.

Isrothy opened this issue · 2 comments

Can I disable this plugin in some filetype like 'terminal'?

Hi, I have added 2 new settings to disable certain filetypes and modes.
I'll make a new release shortly.

With the new option, you can use:

require('scrollEOF').setup({
  disabled_modes = {'t', 'nt'},
})

to disable it in terminal mode and in normal terminal mode. you can find a full list of available modes here

Thanks for the suggestion 👍

Thank you for your update!