Help debug my Auto sessions #276
Answered
by
cameronr
alankritjoshi
asked this question in
Q&A
-
My lazy plugin config is here. Expected: Actual: Am I missing something? |
Beta Was this translation helpful? Give feedback.
Answered by
cameronr
Aug 24, 2024
Replies: 1 comment 2 replies
-
Just saw this, that config should autosave (assuming you're not in one of the suppressed dirs). Can you set
and then post what |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I just noticed that your config won't actually load
auto-session
because you've defined keys but haven't setlazy = false
(or defined an event to trigger lazy loading). That meansLazy.nvim
won't loadauto-session
until you press one of the keys. That's why it wasn't working for you. If you addlazy = false
to yourauto-session
config, it should work.