aboutsummaryrefslogtreecommitdiffstats
path: root/crates
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@atuin.sh>2024-07-11 17:02:59 +0100
committerGitHub <noreply@github.com>2024-07-11 17:02:59 +0100
commit8f5af526d31794e3bdf3f4787347f449aa13294f (patch)
tree2c72aba829071dcaad48ea9c5742da41b61671bf /crates
parentfix(gui): add \r for windows (shouldn't effect unix bc they should ignore it)... (diff)
downloadatuin-8f5af526d31794e3bdf3f4787347f449aa13294f.zip
chore: enable record sync by default (#2255)
I'm now pretty confident in the automatic migration. Let's cut people over so they have a better experience
Diffstat (limited to 'crates')
-rw-r--r--crates/atuin-client/src/settings.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/atuin-client/src/settings.rs b/crates/atuin-client/src/settings.rs
index d7b03c2b..05da636b 100644
--- a/crates/atuin-client/src/settings.rs
+++ b/crates/atuin-client/src/settings.rs
@@ -714,7 +714,7 @@ impl Settings {
// muscle memory.
// New users will get the new default, that is more similar to what they are used to.
.set_default("enter_accept", false)?
- .set_default("sync.records", false)?
+ .set_default("sync.records", true)?
.set_default("keys.scroll_exits", true)?
.set_default("keys.prefix", "a")?
.set_default("keymap_mode", "emacs")?