fix(zsh): add fzf plugin and GPG as SSH
Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
parent
6e099b0e62
commit
383d167b72
1 changed files with 6 additions and 2 deletions
|
@ -2,7 +2,7 @@ export ZSH=/home/mfocko/.oh-my-zsh
|
||||||
|
|
||||||
CASE_SENSITIVE="true"
|
CASE_SENSITIVE="true"
|
||||||
ENABLE_CORRECTION="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"
|
export PATH="$PATH:$HOME/.local/bin"
|
||||||
source $ZSH/oh-my-zsh.sh
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
@ -18,7 +18,11 @@ export CXXFLAGS="-std=c++14 -Wall -Werror"
|
||||||
export LDLIBS="-lm"
|
export LDLIBS="-lm"
|
||||||
|
|
||||||
export LANG="en_US.UTF-8"
|
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 q="exit"
|
||||||
alias k="exit"
|
alias k="exit"
|
||||||
|
|
Loading…
Reference in a new issue