-
Just busy trying Snacks to replace a bunch of separate plugins. I'd like to disable the animation that occurs on the indent lines. Is this possible? I tried using an option the same as scope but this doesn't work: indent = { enabled = true, char = "▎", only_scope = true, only_current = true, animate = { enabled = false } }, |
Beta Was this translation helpful? Give feedback.
Answered by
folke
Dec 11, 2024
Replies: 1 comment 3 replies
-
indent = {
scope = {
animate = { enabled = false },
},
}, If that doesn't work for you, then you're either overriding the config somewhere else, or not calling setup (or use opts when using lazy.nvim) |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
benfrain
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If that doesn't work for you, then you're either overriding the config somewhere else, or not calling setup (or use opts when using lazy.nvim)