From e78e9ce61696dad629cd0982d7f573c688ffabb1 Mon Sep 17 00:00:00 2001 From: giomba Date: Thu, 28 Oct 2021 09:22:14 +0200 Subject: [PATCH] alias fd=fdfind --- zshrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zshrc b/zshrc index 95bda99..d8353e8 100644 --- a/zshrc +++ b/zshrc @@ -3796,6 +3796,11 @@ if command -v bat &> /dev/null ; then alias cat=bat fi +# modern, colourful, user-friendly and rust-based version of find with regex +if command -v fdfind &> /dev/null; then + alias fd=fdfind +fi + # automatically load env variables from .envrc, when entering a directory if command -v direnv &> /dev/null ; then eval "$(direnv hook zsh)"