about summary refs log tree commit diff
path: root/modules
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2020-09-29 15:22:49 +0000
committerAlyssa Ross <hi@alyssa.is>2020-09-29 15:22:49 +0000
commiteb596ebec66deadbf08aea772045931c442ae4c7 (patch)
tree9fea44632d3bfd4936ed099289dc11524ed10380 /modules
parenta223dd72641acd3ae420b8963e947261effa2c24 (diff)
downloadnixlib-eb596ebec66deadbf08aea772045931c442ae4c7.tar
nixlib-eb596ebec66deadbf08aea772045931c442ae4c7.tar.gz
nixlib-eb596ebec66deadbf08aea772045931c442ae4c7.tar.bz2
nixlib-eb596ebec66deadbf08aea772045931c442ae4c7.tar.lz
nixlib-eb596ebec66deadbf08aea772045931c442ae4c7.tar.xz
nixlib-eb596ebec66deadbf08aea772045931c442ae4c7.tar.zst
nixlib-eb596ebec66deadbf08aea772045931c442ae4c7.zip
modules/zsh: disable share_history
I find it useful to be able to look through the history of a shell to
remind myself what I was using that shell for.
Diffstat (limited to 'modules')
-rw-r--r--modules/shell/zsh/zshrc.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/shell/zsh/zshrc.nix b/modules/shell/zsh/zshrc.nix
index 869e33e24e99..2c339f0cc11f 100644
--- a/modules/shell/zsh/zshrc.nix
+++ b/modules/shell/zsh/zshrc.nix
@@ -31,7 +31,7 @@ let
     short_loops = true;
 
     # History
-    share_history = true;
+    share_history = false;
     bang_hist = true;
     hist_allow_clobber = true;
     hist_beep = true;