From a80781ede9fd8cf921d5f0a6120442435aed9cff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Av=C3=A9?= Date: Wed, 24 Apr 2024 00:15:00 +0200 Subject: [PATCH] Use ssh instead of NFS for remote files --- .config/zsh/.zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index de0aa82..bd56fa2 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -79,7 +79,7 @@ function find_global() { for i in "$search_dirs[@]"; do if [ -d $i ]; then PATHS="$PATHS$i\n" - PATHS+="$(fd . $i -t $file_type -d 8)" + PATHS+="$(ssh mallorea fdfind . $i -t $file_type -d 8)" fi done echo -e "$PATHS" > $FZY_CACHE