diff options
author | Yaroslav <contact@yaroslavps.com> | 2020-08-18 10:08:04 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2020-08-18 10:08:04 +0300 |
commit | e91434707922f52e5d653b833f77d494d6cf51e1 (patch) | |
tree | d55bd9569a19f20f92734a5bf3889abd0a76fade /dotfiles/.config/zsh | |
parent | b41555a23bc8c9a4808e740e80895430252528b6 (diff) | |
download | swayrice-e91434707922f52e5d653b833f77d494d6cf51e1.tar.gz swayrice-e91434707922f52e5d653b833f77d494d6cf51e1.zip |
zsh: added some fzf shortcuts/aliases
Diffstat (limited to 'dotfiles/.config/zsh')
-rw-r--r-- | dotfiles/.config/zsh/shortcuts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dotfiles/.config/zsh/shortcuts b/dotfiles/.config/zsh/shortcuts index 577e3d3..990d485 100644 --- a/dotfiles/.config/zsh/shortcuts +++ b/dotfiles/.config/zsh/shortcuts @@ -23,6 +23,10 @@ alias contacts="abook" alias calc="R --no-save -q" alias spw="setsid $TERMINAL >/dev/null 2>&1 &" +# Fuzzy finder +alias fzd='cd "$(find * -type d | fzf || echo ".")"' +alias fzv='nvim $(fzf)' + # Mounting drive shortcuts alias mnt="udisksctl mount -b" alias umnt="udisksctl unmount -b" |