diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2017-10-17 18:12:57 -0600 |
---|---|---|
committer | mediocregopher <mediocregopher@gmail.com> | 2021-10-03 17:22:56 -0600 |
commit | 07ab3a77b44944a1ac234fbd717391f36370416e (patch) | |
tree | edd959740bf9256bf38e9c2e3cacda8c555f8c56 /zsh/zshrc |
initial public commit
Diffstat (limited to 'zsh/zshrc')
-rw-r--r-- | zsh/zshrc | 18 |
1 files changed, 18 insertions, 0 deletions
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 |