diff --git a/lua/auto-session/config.lua b/lua/auto-session/config.lua index 4c51d8d..47b43b4 100644 --- a/lua/auto-session/config.lua +++ b/lua/auto-session/config.lua @@ -66,7 +66,7 @@ local defaults = { auto_restore = true, -- Enables/disables auto restoring session on start auto_create = true, -- Enables/disables auto creating new session files. Can take a function that should return true/false if a new session file should be created or not suppressed_dirs = nil, -- Suppress session restore/create in certain directories - alloweded_dirs = nil, -- Allow session restore/create in certain directories + allowed_dirs = nil, -- Allow session restore/create in certain directories auto_restore_last_session = false, -- On startup, loads the last saved session if session for cwd does not exist use_git_branch = false, -- Include git branch name in session name lazy_support = true, -- Automatically detect if Lazy.nvim is being used and wait until Lazy is done to make sure session is restored correctly. Does nothing if Lazy isn't being used. Can be disabled if a problem is suspected or for debugging