From faed6407e37ad417467578661718c03e1b8ba1d1 Mon Sep 17 00:00:00 2001
From: Arti Zirk <arti.zirk@gmail.com>
Date: Wed, 2 Jun 2021 16:41:10 +0300
Subject: [PATCH] Add some support for WSL

---
 .zshrc | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/.zshrc b/.zshrc
index ed2ed4c..f86d9d0 100644
--- a/.zshrc
+++ b/.zshrc
@@ -230,3 +230,9 @@ export JOBS=8
 function vless {
     /usr/share/nvim/runtime/macros/less.sh $@
 }
+
+# If running under windows with pageagent then use it
+# https://github.com/benpye/wsl-ssh-pageant
+if [[ -e /mnt/c/wsl-ssh-pageant/ssh-agent.sock ]]; then
+    export SSH_AUTH_SOCK=/mnt/c/wsl-ssh-pageant/ssh-agent.sock
+fi