Everything I take with me from machine to machine.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
loadout/zsh/zshrc

24 lines
475 B

#Global stuff shitty programs use
export EDITOR=~/.nix-profile/bin/nvim
# GPG is needy
export GPG_TTY=$(tty)
#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