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
main
Mario Rodas 2 years ago
parent 4f4165a8b9
commit 0232fe1b75
  1. 10
      modules/programs/atuin.nix

@ -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 ''

Loading…
Cancel
Save