From 38075984903c0e278f28387dba4af97330addeec Mon Sep 17 00:00:00 2001 From: "chawley (chawley-HP-EliteBook-840-G3)" Date: Thu, 14 Mar 2019 15:31:46 -0400 Subject: [PATCH] Additions for FZF and RG --- .zshrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 552f675..6c6a37d 100644 --- a/.zshrc +++ b/.zshrc @@ -53,7 +53,7 @@ COMPLETION_WAITING_DOTS="true" # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ # Example format: plugins=(rails git textmate ruby lighthouse) # Add wisely, as too many plugins slow down shell startup. -plugins=(git zsh-autosuggestions) +plugins=(git zsh-autosuggestions zsh-completions) source $ZSH/oh-my-zsh.sh @@ -182,7 +182,10 @@ source $HOME/.zsh_aliases # source $HOME/.zsh_functions +# FZF Specific [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh +# Include hidden files +export FZF_DEFAULT_COMMAND='find .' # set PATH so it includes user's private bin if it exists PATH="$HOME/.local/bin:$HOME/bin:$PATH"