nushell: Enable history sync

The alternative is worse...
This commit is contained in:
2023-12-27 19:09:11 +01:00
parent f09d772b43
commit a451e48887

View File

@ -246,7 +246,7 @@ $env.config = {
history: {
max_size: 100_000 # Session has to be reloaded for this to take effect
sync_on_enter: false # Enable to share history between multiple sessions, else you have to close the session to write history to file
sync_on_enter: true # Enable to share history between multiple sessions, else you have to close the session to write history to file
file_format: "plaintext" # "sqlite" or "plaintext"
isolation: false # only available with sqlite file_format. true enables history isolation, false disables it. true will allow the history to be isolated to the current session using up/down arrows. false will allow the history to be shared across all sessions.
}