From 9c299b26caa60dbfd451ba077b7381a953287e83 Mon Sep 17 00:00:00 2001 From: mikl Date: Fri, 10 Jul 2026 16:05:25 +0300 Subject: [PATCH] chore: disable zsh history file, use atuin exclusively --- home/zsh.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/home/zsh.nix b/home/zsh.nix index 2a5db39..ba371dc 100644 --- a/home/zsh.nix +++ b/home/zsh.nix @@ -7,13 +7,13 @@ autosuggestion.enable = true; syntaxHighlighting.enable = true; - # History + # History - disabled, using atuin instead history = { - size = 10000; - save = 10000; + size = 1000; # держим в памяти для текущей сессии + save = 0; # не сохраняем в файл ignoreDups = true; - share = true; - extended = true; + share = false; # atuin сам разберётся с sync + extended = false; }; # Pure prompt