mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 15:34:40 +01:00
6 lines
200 B
Bash
6 lines
200 B
Bash
bash_completion_file="$HOME/.nix-profile/share/bash-completion/bash_completion"
|
|
if [[ $BASH_VERSION != 3.* && -f "$bash_completion_file" ]]; then
|
|
source "$bash_completion_file"
|
|
fi
|
|
|
|
# vim: ft=bash
|