diff --git a/bashprofile/.bashrc b/bashprofile/.bashrc index fbce86e..ae03d43 100644 --- a/bashprofile/.bashrc +++ b/bashprofile/.bashrc @@ -120,9 +120,12 @@ if [ -f ~/.bash_aliases-local ]; then . ~/.bash_aliases-local fi -. "$HOME/.bash-profile.d/fzf-completion.bash" -. "$HOME/.bash-profile.d/fzf-key-bindings.bash" -. "$HOME/.bash-profile.d/00-fzf-include-dotfiles-exclude-git.bash" +if ! lsb_release -r | grep 22.04 +then + . "$HOME/.bash-profile.d/fzf-completion.bash" + . "$HOME/.bash-profile.d/fzf-key-bindings.bash" + . "$HOME/.bash-profile.d/00-fzf-include-dotfiles-exclude-git.bash" +fi eval "$("$HOME/.dotfiles/starship-$(uname -m)" init bash)"