Skip to content

Commit

Permalink
Fix loading multiple completions in bash such as zsh
Browse files Browse the repository at this point in the history
Follow GH-1018
  • Loading branch information
kachick committed Jan 7, 2025
1 parent 4d354c1 commit 3f24209
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion home-manager/bash.nix
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,10 @@
source "${pkgs.fzf-git-sh}/share/fzf-git-sh/fzf-git.sh"
source ${../dependencies/bash}/*
# source does not load all paths. See https://stackoverflow.com/questions/1423352/source-all-files-in-a-directory-from-bash-profile
for file in ${../dependencies/bash}/*; do
source "$file"
done
# Disable `Ctrl + S(no output tty)`
${lib.getBin pkgs.coreutils}/bin/stty stop undef
Expand Down

0 comments on commit 3f24209

Please sign in to comment.