mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00: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:
parent
4f4165a8b9
commit
0232fe1b75
1 changed files with 7 additions and 3 deletions
|
@ -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…
Reference in a new issue