diff --git a/bash/.bashrc b/bash/.bashrc index f4f7eb2..515a8af 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -11,8 +11,6 @@ if [[ $TERM == xterm-termite ]]; then __vte_prompt_command fi -[ -f ~/.fzf.bash ] && source ~/.fzf.bash - # Make colorcoding available for everyone Black='\e[0;30m' # Black @@ -62,3 +60,6 @@ source ~/.profile # Import my prompt source ~/.bash_prompt + +# Use fzf for backwards search +[ -f ~/.fzf.bash ] && source ~/.fzf.bash diff --git a/zsh/.zshrc b/zsh/.zshrc index 4112a0c..291b67c 100755 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -4,8 +4,6 @@ if [[ $TERM == xterm-termite ]]; then __vte_osc7 fi -[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh - # History configuration HISTFILE=~/.zhistory HISTSIZE=10000 @@ -105,3 +103,6 @@ source /usr/share/zsh/plugins/fast-syntax-highlighting/fast-syntax-highlighting. # import my prompt source ~/.zsh_prompt + +# Use fzf for backwards search +[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh