1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 08:28:30 +02:00

zsh: add 'ignoreSpace' option

This option sets HIST_IGNORE_SPACE, which determines whether commands starting with a
space are put in the history or not.
This commit is contained in:
Owen Shepherd 2020-01-22 19:08:21 +00:00 committed by Nikita Uvarov
parent de8033747c
commit a591e8f9e4
No known key found for this signature in database
GPG Key ID: F7A5FB3A7C10EF96

View File

@ -61,6 +61,15 @@ let
'';
};
ignoreSpace = mkOption {
type = types.bool;
default = true;
description = ''
Do not enter command lines into the history list
if the first character is a space.
'';
};
expireDuplicatesFirst = mkOption {
type = types.bool;
default = false;
@ -414,6 +423,7 @@ in
setopt HIST_FCNTL_LOCK
${if cfg.history.ignoreDups then "setopt" else "unsetopt"} HIST_IGNORE_DUPS
${if cfg.history.ignoreSpace then "setopt" else "unsetopt"} HIST_IGNORE_SPACE
${if cfg.history.expireDuplicatesFirst then "setopt" else "unsetopt"} HIST_EXPIRE_DUPS_FIRST
${if cfg.history.share then "setopt" else "unsetopt"} SHARE_HISTORY
${if cfg.history.extended then "setopt" else "unsetopt"} EXTENDED_HISTORY