summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2025-05-02 14:07:18 -0400
committerMatt Turner <mattst88@gmail.com>2025-05-02 14:07:41 -0400
commitd709d3c662d2a2abffe91fd867a239da0583ecfa (patch)
treee63ca5dee8e3b6add172cd9884ec617773e40ad1
parent7c5828552202e6dd8ec1586f23b57a843d08906a (diff)
zsh: Add aliases vi and fd
-rwxr-xr-xzsh/.zshrc2
1 files changed, 2 insertions, 0 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc
index 4239018..f2d490f 100755
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -33,6 +33,8 @@ alias grpe="grep"
alias gti="git"
alias mkdir="mkdir -p"
alias sl="ls"
+[[ $(command -v fdfind) ]] && alias fd=fdfind
+[[ $(command -v nvim) ]] && alias vi=nvim
bindkey "^[[1~" beginning-of-line
bindkey "^[[4~" end-of-line