From 62c0fe97ac25652d97543a7d18b8bc90c8c36a3f Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Fri, 11 Mar 2022 10:06:03 -0500 Subject: [PATCH] fish: Enable git discovery across filesystem This is mainly to get rid of the warning when using "git status" where git doesn't exist when the current partition isn't the same as the root partition. --- fish/.config/fish/config.fish | 1 + 1 file changed, 1 insertion(+) diff --git a/fish/.config/fish/config.fish b/fish/.config/fish/config.fish index fcc0de8..22522b9 100644 --- a/fish/.config/fish/config.fish +++ b/fish/.config/fish/config.fish @@ -9,6 +9,7 @@ export BROWSER="firefox" export PATH="$HOME/.deno/bin:$HOME/.cargo/bin:$HOME/.yarn/bin:$HOME/.local/bin:$PATH" export RIPGREP_CONFIG_PATH="$HOME/.config/ripgrep/config" export NODE_OPTIONS="--max_old_space_size=16384" +export GIT_DISCOVERY_ACROSS_FILESYSTEM=1 export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"