diff --git a/zsh/configs/fzf.zsh b/zsh/configs/fzf.zsh new file mode 100755 index 0000000000..3261f69d6a --- /dev/null +++ b/zsh/configs/fzf.zsh @@ -0,0 +1,3 @@ +#!/usr/bin/env zsh + +source <(/opt/homebrew/bin/fzf --zsh) diff --git a/zsh/configs/keybindings.zsh b/zsh/configs/keybindings.zsh index 5e209aa096..64e0074a2b 100644 --- a/zsh/configs/keybindings.zsh +++ b/zsh/configs/keybindings.zsh @@ -9,7 +9,7 @@ bindkey "^F" vi-cmd-mode bindkey "^A" beginning-of-line bindkey "^E" end-of-line bindkey "^K" kill-line -bindkey "^R" history-incremental-search-backward +# bindkey "^R" history-incremental-search-backward bindkey "^P" history-search-backward bindkey "^Y" accept-and-hold bindkey "^N" insert-last-word diff --git a/zshrc b/zshrc index ff86d5d62b..d29073784d 100644 --- a/zshrc +++ b/zshrc @@ -39,3 +39,7 @@ _load_settings "$HOME/.zsh/configs" # aliases [[ -f ~/.aliases ]] && source ~/.aliases + +export PATH="$HOME/.bin:$PATH" + +eval "$(/opt/homebrew/bin/brew shellenv)"