diff options
Diffstat (limited to 'dot_zshrc')
| -rw-r--r-- | dot_zshrc | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -14,6 +14,7 @@ precmd () { } export PATH=$PATH:~/.local/bin +export PATH="$HOME/.cargo/bin:$PATH" # zstyle ':completion:*' menu select @@ -42,8 +43,13 @@ if [[ -f ~/.ssh/ssh-agent.env ]]; then fi ssh-add -l &> /dev/null || ssh-add -# Home and End Key Bindings -bindkey "^[[H" beginning-of-line -bindkey "^[[F" end-of-line +export GPG_TTY=$(tty) +gpg-connect-agent updatestartuptty /bye >/dev/null eval "$(zoxide init zsh)" + +bindkey -e + +# if [[ -z "$TMUX" ]]; then +# tmux attach-session -t default \; new-window && exit || tmux new-session -s default && exit +# fi |
