From 49e1f57c56d33e2cb37b0b0f7d377483a4ccdfc9 Mon Sep 17 00:00:00 2001 From: Lionarius Date: Thu, 12 Jun 2025 00:52:03 +0300 Subject: [PATCH] zsh: add rust binaries to path --- zsh/.zshrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zsh/.zshrc b/zsh/.zshrc index c69fc53..81c16e5 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -63,6 +63,8 @@ export FZF_DEFAULT_COMMAND="fd --hidden --strip-cwd-prefix --exclude .git" export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND" export FZF_ALT_C_COMMAND="fd --type=d --hidden --strip-cwd-prefix --exclude .git" +export PATH="$HOME/.cargo/bin:$PATH" + _fzf_compgen_path() { fd --hidden --exclude .git . "$1" }