Added more FZF integrations

This commit is contained in:
2024-02-18 15:36:43 -05:00
parent f8ef25a59f
commit b1f315ab59

View File

@@ -39,3 +39,19 @@ alias vimf='vim "`fzf`"'
# CD with the help of fzf # CD with the help of fzf
alias cdf='cd ~ && cd "$(find . -type d -print0 | fzf --read0 --print0)"' alias cdf='cd ~ && cd "$(find . -type d -print0 | fzf --read0 --print0)"'
# Do lots of things with FZF
# VIM
alias vimf='vim "`fzf`"'
# CD
alias cdf='cd "`fzf`"'
# LESS
alias lessf='less "`fzf`"'
# CAT
alias catf='cat "`fzf`"'
# GLOW
alias glowf='glow "`fzf`"'