diff options
author | Matt Turner <mattst88@gmail.com> | 2025-05-02 14:07:18 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2025-05-02 14:07:41 -0400 |
commit | d709d3c662d2a2abffe91fd867a239da0583ecfa (patch) | |
tree | e63ca5dee8e3b6add172cd9884ec617773e40ad1 | |
parent | 7c5828552202e6dd8ec1586f23b57a843d08906a (diff) |
zsh: Add aliases vi and fd
-rwxr-xr-x | zsh/.zshrc | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 |