fix(zsh): add fzf plugin and GPG as SSH

Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
Matej Focko 2022-08-18 00:09:20 +02:00
parent 6e099b0e62
commit 383d167b72
Signed by: mfocko
GPG key ID: 7C47D46246790496

View file

@ -2,7 +2,7 @@ export ZSH=/home/mfocko/.oh-my-zsh
CASE_SENSITIVE="true"
ENABLE_CORRECTION="true"
plugins=(git common-aliases history systemd sudo zsh-autosuggestions zsh-syntax-highlighting)
plugins=(git common-aliases history systemd sudo zsh-autosuggestions zsh-syntax-highlighting fzf)
export PATH="$PATH:$HOME/.local/bin"
source $ZSH/oh-my-zsh.sh
@ -18,7 +18,11 @@ export CXXFLAGS="-std=c++14 -Wall -Werror"
export LDLIBS="-lm"
export LANG="en_US.UTF-8"
export GPG_TTY=$(tty)
### gpg ###
export GPG_TTY="$(tty)"
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
gpgconf --launch gpg-agent
alias q="exit"
alias k="exit"