Skip to content

Commit

Permalink
Merge branch 'rmagatti:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
cameronr authored Aug 26, 2024
2 parents 6f1751b + 5588169 commit 7cb9109
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Here are the default settings:
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
Expand Down Expand Up @@ -218,7 +218,7 @@ There are two config options, `allowed_dirs` and `suppressed_dirs`, that control
Both options are a table of directories, with support for globs:

```lua
alloweded_dirs = { '/some/dir/', '/projects/*' }
allowed_dirs = { '/some/dir/', '/projects/*' }
suppressed_dirs = { '/projects/secret' }
```

Expand Down

0 comments on commit 7cb9109

Please sign in to comment.