From ec670da98353be0d384070599cea6947846aebf3 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Mon, 24 Mar 2025 11:11:28 +0100 Subject: [PATCH] home/bash: set a few shell options --- home/programs/bash.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/home/programs/bash.nix b/home/programs/bash.nix index c523f38..108d887 100644 --- a/home/programs/bash.nix +++ b/home/programs/bash.nix @@ -7,5 +7,10 @@ bashrcExtra = '' source "${config.xdg.configHome}/mutable_env.sh" ''; + shellOptions = [ + "histappend" + "checkwinsize" + "checkjobs" + ]; }; -} \ No newline at end of file +}