From 0aa8938b5bfb9431b5527c7fdc0b4b587cb1fff2 Mon Sep 17 00:00:00 2001 From: Felipe M Date: Tue, 12 Jan 2021 10:50:43 +0100 Subject: [PATCH] zsh: Added .local/bin path and gpg tty --- .zshrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.zshrc b/.zshrc index 14fb029..b0ae1e3 100644 --- a/.zshrc +++ b/.zshrc @@ -1,10 +1,14 @@ alias magit="emacs -nw --eval '(progn (magit-status) (delete-other-windows))'" +# GPG tty +export GPG_TTY=$(tty) + # Golang export GOPATH=~/.gocode # Path export PATH=$PATH:$(go env GOPATH)/bin +export PATH=$PATH:$HOME/.local/bin source ~/.antigen.zsh