From 07ab3a77b44944a1ac234fbd717391f36370416e Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Tue, 17 Oct 2017 18:12:57 -0600 Subject: initial public commit --- zsh/zshrc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 zsh/zshrc (limited to 'zsh/zshrc') diff --git a/zsh/zshrc b/zsh/zshrc new file mode 100644 index 0000000..c939401 --- /dev/null +++ b/zsh/zshrc @@ -0,0 +1,18 @@ +#Correctly background processes +setopt nohup + +#Stop zsh from stupidly asking me to correct vim to .vim +unsetopt correctall + +#Bind my shit +bindkey -s "\eu" "cd ..\n" #cd up + +#Turn off share history +unsetopt share_history + +#zmv is the bee's-knees +autoload -U zmv + +# Save ssh password within a terminal +eval $(ssh-agent) 2>&1 >/dev/null +trap "kill $SSH_AGENT_PID" 0 -- cgit v1.2.3