Update dotfiles/.bashrc, dotfiles/.local/share/fonts/Hack Bold Nerd Font Complete.ttf

This commit is contained in:
Brian Zalewski 2022-09-30 14:09:57 +00:00
parent 6be08c1f6a
commit cc64f7b3d7
2 changed files with 47 additions and 44 deletions

View file

@ -202,7 +202,7 @@ find() {
fi fi
} }
rga-fzf() { rgafzf() {
RG_PREFIX="rga --files-with-matches" RG_PREFIX="rga --files-with-matches"
local file local file
file="$( file="$(
@ -216,6 +216,8 @@ rga-fzf() {
xdg-open "$file" xdg-open "$file"
} }
# Bash completions
if [ "$0" = 'bash' ]; then
### fd ### fd
[ -e /usr/local/src/fd/fd ] && source /usr/local/src/fd/autocomplete/fd.bash-completion [ -e /usr/local/src/fd/fd ] && source /usr/local/src/fd/autocomplete/fd.bash-completion
@ -256,3 +258,4 @@ command -v zoxide > /dev/null && eval "$(zoxide init bash)"
if [ -f "$HOME/.fig/shell/bashrc.post.bash" ]; then if [ -f "$HOME/.fig/shell/bashrc.post.bash" ]; then
. "$HOME/.fig/shell/bashrc.post.bash" . "$HOME/.fig/shell/bashrc.post.bash"
fi fi
fi