1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-18 12:38:30 +02:00

atuin: don't install widget on limited terminals

Otherwise we get the following warning for terminals with limited
capabilities:

    bash: bind: warning: line editing not enabled
This commit is contained in:
Mario Rodas 2022-02-19 04:20:00 +00:00
parent 4f4165a8b9
commit 0232fe1b75

View File

@ -89,12 +89,16 @@ in {
};
programs.bash.initExtra = mkIf cfg.enableBashIntegration ''
source "${pkgs.bash-preexec}/share/bash/bash-preexec.sh"
eval "$(${cfg.package}/bin/atuin init bash)"
if [[ :$SHELLOPTS: =~ :(vi|emacs): ]]; then
source "${pkgs.bash-preexec}/share/bash/bash-preexec.sh"
eval "$(${cfg.package}/bin/atuin init bash)"
fi
'';
programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
eval "$(${cfg.package}/bin/atuin init zsh)"
if [[ $options[zle] = on ]]; then
eval "$(${cfg.package}/bin/atuin init zsh)"
fi
'';
programs.fish.interactiveShellInit = mkIf cfg.enableFishIntegration ''