You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
363 B
9 lines
363 B
5 years ago
|
# this rg command will get a list of files that are not in gitignore or similar
|
||
|
export FZF_DEFAULT_COMMAND="rg --files"
|
||
|
# this is the argument completeion optionm, use the same command
|
||
|
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
|
||
|
if [ -e /usr/share/fzf/key-bindings.zsh ]; then
|
||
|
source /usr/share/fzf/key-bindings.zsh
|
||
|
source /usr/share/fzf/completion.zsh
|
||
|
fi
|