Update fzf completion paths

This commit is contained in:
Tony Grosinger 2022-09-26 09:33:18 -07:00
parent 4bdb52b1cb
commit 95da9e8574

14
.bashrc
View File

@ -51,13 +51,15 @@ then
export PATH=$PATH:${HOME}/bin
fi
# Command to show temperatures
alias temps="paste <(cat /sys/class/thermal/thermal_zone*/type) <(cat /sys/class/thermal/thermal_zone*/temp) | column -s $'\t' -t | sed 's/\(.\)..$/.\1°C/'"
# fzf
source /usr/share/doc/fzf/examples/key-bindings.bash
source /usr/share/doc/fzf/examples/completion.bash
if [ -f /usr/share/bash-completion/completions/fzf ]; then
source /usr/share/bash-completion/completions/fzf
fi
if [ -f /usr/share/doc/fzf/examples/key-bindings.bash ]; then
source /usr/share/doc/fzf/examples/key-bindings.bash
fi
# Add a local un-tracked bash-rc if present
if [[ -f ${HOME}/.bashrc_local ]];