-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
is there a way to temporarily disable animation? #54
Comments
No sorry, but I'll definitely add that ASAP! |
You can disable the animation for large movements by setting the 'max_delta' config option To disable scrolling for movements larger than 200 lines (or columns): require("cinnamon").setup({
options = {
max_delta = {
line = 200,
column = 200,
},
},
}) |
Huhm I think it's not quite enough for me. Because with just a large file, a small movement like |
Hopefully this fixes your lag with large files! I'll still add an option for disabling cinnamon per buffer either way |
Thank you! It's work great (: |
Hi, I want to ask if there is a way to temporarily disable animation. I saw a way to do that in
echasnovski/mini.animate
to disable animation globally or for a buffer, and it is used in LazyVim.It would be nice to temporarily disable animation for big files. And I wonder do we have some kinds like that in our plugin?
Thank you anyway!
The text was updated successfully, but these errors were encountered: