Spice up org-mode

This commit is contained in:
Marco Thomas
2021-05-23 12:03:38 +02:00
parent 99059f1c08
commit 13ecb50a91
4 changed files with 21 additions and 17 deletions

View File

@@ -27,6 +27,15 @@ alias rm='rm -i' # ask before removal
alias cp='cp -i' # ask before removal
alias mv='mv -i' # ask before removal
# ============================== SSH-Agent
if [ -f ~/.ssh/agent.env ]; then
. ~/.ssh/agent.env > /dev/null
else
echo "Starting ssh-agent"
eval `ssh-agent | tee ~/.ssh/agent.env`
ssh-add
fi
if [ -f ~/.bashrc_local ]; then
source ~/.bashrc_local
fi