hack to set LDpreload for zsh itself

This commit is contained in:
Sheppy
2017-07-17 15:25:14 +02:00
parent cafa0e880e
commit 36023c921a

7
zshrc
View File

@@ -263,3 +263,10 @@ source ~/.config/other/zsh-history-substring-search.zsh
bindkey '^[[5~' history-substring-search-up bindkey '^[[5~' history-substring-search-up
bindkey '^[[6~' history-substring-search-down bindkey '^[[6~' history-substring-search-down
alias genserverkey='openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 100000' alias genserverkey='openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 100000'
if [[ $FIRST_RUN == "FALSE" ]]; then
;
else
FIRST_RUN="FALSE"
export FIRST_RUN
exec zsh
fi