shell: update aliases

This commit is contained in:
Marco Thomas
2023-09-28 10:28:36 +02:00
parent fd555d4c28
commit f041223352
2 changed files with 4 additions and 4 deletions

View File

@@ -10,6 +10,7 @@
br = branch
c = commit -v
ca = commit -v --amend
cm = commit -v -m
co = checkout
cp = cherry-pick
d = diff

View File

@@ -10,13 +10,12 @@ export FZF_DEFAULT_OPTS='
if [[ -d ~/.vim/plugged/fzf ]]; then
[[ -x $(which fzf 2> /dev/null) ]] || export PATH=$PATH:$HOME/.vim/plugged/fzf/bin
if [[ "$SHELL" =~ "bash$" ]]; then
source ~/.vim/plugged/fzf/shell/completion.bash
source ~/.vim/plugged/fzf/shell/key-bindings.bash
fi
if [[ "$SHELL" =~ "zsh$" ]]; then
source ~/.vim/plugged/fzf/shell/completion.zsh
source ~/.vim/plugged/fzf/shell/key-bindings.zsh
else
source ~/.vim/plugged/fzf/shell/completion.bash
source ~/.vim/plugged/fzf/shell/key-bindings.bash
fi
fi