@@ -889,6 +889,7 @@ function zqs() {
889
889
echo " Disabling 1password ssh-agent. New ZSH sessions will no longer use 1password's ssh agent."
890
890
_zqs-set-setting use-1password-ssh-agent false
891
891
;;
892
+
892
893
' enable-1password-agent' )
893
894
echo " Enabling 1password ssh-agent. New ZSH sessions will use 1password's ssh agent."
894
895
_zqs-set-setting use-1password-ssh-agent true
@@ -897,19 +898,23 @@ function zqs() {
897
898
' disable-bindkey-handling' )
898
899
zsh-quickstart-disable-bindkey-handling
899
900
;;
901
+
900
902
' enable-bindkey-handling' )
901
903
zsh-quickstart-enable-bindkey-handling
902
904
;;
903
905
904
906
' disable-control-c-decorator' )
905
907
zqs-quickstart-disable-control-c-decorator
906
908
;;
909
+
907
910
' enable-control-c-decorator' )
908
911
zqs-quickstart-enable-control-c-decorator
909
912
;;
913
+
910
914
' disable-debug-mode' )
911
915
rm -f ${ZDOTDIR:- $HOME } /.zqs-debug-mode
912
916
;;
917
+
913
918
' enable-debug-mode' )
914
919
date > ${ZDOTDIR:- $HOME } /.zqs-debug-mode
915
920
;;
@@ -918,6 +923,7 @@ function zqs() {
918
923
echo " Disabling diff-so-fancy plugin. New ZSH sessions will no longer use the plugin."
919
924
_zqs-set-setting diff-so-fancy false
920
925
;;
926
+
921
927
' enable-diff-so-fancy' )
922
928
echo " Enabling diff-so-fancy plugin. It will be loaded the next time you start a ZSH session."
923
929
_zqs-set-setting diff-so-fancy true
@@ -926,34 +932,39 @@ function zqs() {
926
932
' disable-zmv-autoloading' )
927
933
_zqs-disable-zmv-autoloading
928
934
;;
935
+
929
936
' enable-zmv-autoloading' )
930
937
_zqs-enable-zmv-autoloading
931
938
;;
932
939
933
940
' disable-omz-plugins' )
934
941
zsh-quickstart-disable-omz-plugins
935
942
;;
943
+
936
944
' enable-omz-plugins' )
937
945
zsh-quickstart-enable-omz-plugins
938
946
;;
939
947
940
948
' enable-ssh-askpass-require' )
941
949
zsh-quickstart-enable-ssh-askpass-require
942
950
;;
951
+
943
952
' disable-ssh-askpass-require' )
944
953
zsh-quickstart-disable-ssh-askpass-require
945
954
;;
946
955
947
956
' enable-ssh-key-listing' )
948
957
_zqs-set-setting list-ssh-keys true
949
958
;;
959
+
950
960
' disable-ssh-key-listing' )
951
961
_zqs-set-setting list-ssh-keys false
952
962
;;
953
963
954
964
' disable-ssh-key-loading' )
955
965
_zqs-set-setting load-ssh-keys false
956
966
;;
967
+
957
968
' enable-ssh-key-loading' )
958
969
_zqs-set-setting load-ssh-keys true
959
970
;;
@@ -964,10 +975,12 @@ function zqs() {
964
975
rm -f ${ZDOTDIR:- $HOME } /.zqs-zprof-enabled
965
976
echo " New ZSH sessions will no longer use profiling."
966
977
;;
978
+
967
979
' enable-zsh-profiling' )
968
980
touch ${ZDOTDIR:- $HOME } /.zqs-zprof-enabled
969
981
echo " New ZSH sessions will use profiling."
970
982
;;
983
+
971
984
* )
972
985
zqs-help
973
986
;;
@@ -978,3 +991,5 @@ function zqs() {
978
991
if [[ -f ${ZDOTDIR:- $HOME } /.zqs-zprof-enabled ]]; then
979
992
zprof
980
993
fi
994
+
995
+ [ -f ~ /.fzf.zsh ] && source ~ /.fzf.zsh
0 commit comments