Skip to content

Commit 3248398

Browse files
committed
Bump copyright date
Signed-off-by: Joe Block <[email protected]>
1 parent ebcd04a commit 3248398

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

zsh/.zgen-setup

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Only including a shebang to trigger editors to use shell
44
# syntax highlighting.
55
#
6-
# Copyright 2006-2022 Joseph Block <[email protected]>
6+
# Copyright 2006-2025 Joseph Block <[email protected]>
77
#
88
# BSD licensed, see LICENSE.txt
99

zsh/.zsh_functions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Only including a shebang to trigger editors shell syntax highlighting
44
#
5-
# Copyright 2006-2022 Joseph Block <[email protected]>
5+
# Copyright 2006-2025 Joseph Block <[email protected]>
66
#
77
# BSD licensed, see LICENSE.txt
88
#

zsh/.zshrc

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -889,6 +889,7 @@ function zqs() {
889889
echo "Disabling 1password ssh-agent. New ZSH sessions will no longer use 1password's ssh agent."
890890
_zqs-set-setting use-1password-ssh-agent false
891891
;;
892+
892893
'enable-1password-agent')
893894
echo "Enabling 1password ssh-agent. New ZSH sessions will use 1password's ssh agent."
894895
_zqs-set-setting use-1password-ssh-agent true
@@ -897,19 +898,23 @@ function zqs() {
897898
'disable-bindkey-handling')
898899
zsh-quickstart-disable-bindkey-handling
899900
;;
901+
900902
'enable-bindkey-handling')
901903
zsh-quickstart-enable-bindkey-handling
902904
;;
903905

904906
'disable-control-c-decorator')
905907
zqs-quickstart-disable-control-c-decorator
906908
;;
909+
907910
'enable-control-c-decorator')
908911
zqs-quickstart-enable-control-c-decorator
909912
;;
913+
910914
'disable-debug-mode')
911915
rm -f ${ZDOTDIR:-$HOME}/.zqs-debug-mode
912916
;;
917+
913918
'enable-debug-mode')
914919
date > ${ZDOTDIR:-$HOME}/.zqs-debug-mode
915920
;;
@@ -918,6 +923,7 @@ function zqs() {
918923
echo "Disabling diff-so-fancy plugin. New ZSH sessions will no longer use the plugin."
919924
_zqs-set-setting diff-so-fancy false
920925
;;
926+
921927
'enable-diff-so-fancy')
922928
echo "Enabling diff-so-fancy plugin. It will be loaded the next time you start a ZSH session."
923929
_zqs-set-setting diff-so-fancy true
@@ -926,34 +932,39 @@ function zqs() {
926932
'disable-zmv-autoloading')
927933
_zqs-disable-zmv-autoloading
928934
;;
935+
929936
'enable-zmv-autoloading')
930937
_zqs-enable-zmv-autoloading
931938
;;
932939

933940
'disable-omz-plugins')
934941
zsh-quickstart-disable-omz-plugins
935942
;;
943+
936944
'enable-omz-plugins')
937945
zsh-quickstart-enable-omz-plugins
938946
;;
939947

940948
'enable-ssh-askpass-require')
941949
zsh-quickstart-enable-ssh-askpass-require
942950
;;
951+
943952
'disable-ssh-askpass-require')
944953
zsh-quickstart-disable-ssh-askpass-require
945954
;;
946955

947956
'enable-ssh-key-listing')
948957
_zqs-set-setting list-ssh-keys true
949958
;;
959+
950960
'disable-ssh-key-listing')
951961
_zqs-set-setting list-ssh-keys false
952962
;;
953963

954964
'disable-ssh-key-loading')
955965
_zqs-set-setting load-ssh-keys false
956966
;;
967+
957968
'enable-ssh-key-loading')
958969
_zqs-set-setting load-ssh-keys true
959970
;;
@@ -964,10 +975,12 @@ function zqs() {
964975
rm -f ${ZDOTDIR:-$HOME}/.zqs-zprof-enabled
965976
echo "New ZSH sessions will no longer use profiling."
966977
;;
978+
967979
'enable-zsh-profiling')
968980
touch ${ZDOTDIR:-$HOME}/.zqs-zprof-enabled
969981
echo "New ZSH sessions will use profiling."
970982
;;
983+
971984
*)
972985
zqs-help
973986
;;
@@ -978,3 +991,5 @@ function zqs() {
978991
if [[ -f ${ZDOTDIR:-$HOME}/.zqs-zprof-enabled ]]; then
979992
zprof
980993
fi
994+
995+
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh

0 commit comments

Comments
 (0)