From 668ed2f1697205232cc09f3c27501d0158f02db5 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Fri, 15 Jan 2021 15:57:56 -0500 Subject: [PATCH] Add plaid-cli env variables --- bash/.bashrc | 5 +++++ emacs/.emacs.d/init.org | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/bash/.bashrc b/bash/.bashrc index 55f8a71..1d7c353 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -67,3 +67,8 @@ else } export PS1="\[\e[32m\]\w \[\e[91m\]\$(parse_git_branch)\[\e[00m\]$ " fi + +# plaid-cli +PLAID_CLIENT_ID="$(pass plaid-cli-client-id)" +PLAID_SECRET="$(pass plaid-cli-development-secret)" +PLAID_ENVIRONMENT=development diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 1eef7af..bb72688 100755 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -1441,7 +1441,8 @@ I don't want anything to write to my init.el, so save customizations in a separa (setq exec-path-from-shell-variables '("PATH" "MANPATH" "LEDGER_FILE" "LOLA_HOME" "MODELS_HOME" "LOLA_TRAVEL_SERVICE_HOME" "WORKON_HOME" "PIPENV_VERBOSITY" "PIPENV_DONT_LOAD_ENV" - "PIPENV_MAX_DEPTH" "PYENV_ROOT" "KOPS_STATE_STORE") + "PIPENV_MAX_DEPTH" "PYENV_ROOT" "KOPS_STATE_STORE" + "PLAID_CLIENT_ID" "PLAID_SECRET" "PLAID_ENVIRONMENT") exec-path-from-shell-check-startup-files nil) (exec-path-from-shell-initialize)) #+END_SRC