Compare commits

..

No commits in common. "0c36e5d4faaa0fc81d464f8e2d6c13f036551940" and "01f8e07b839685fab198539aec301637ece5cd3b" have entirely different histories.

4
.zshrc
View file

@ -127,8 +127,8 @@ Set the SKIP_P10K_THEME environment variable to 'true' or make a configuration t
setopt histignorealldups # If a new command is a duplicate, remove the older one setopt histignorealldups # If a new command is a duplicate, remove the older one
setopt autocd # if only directory path is entered, cd there. setopt autocd # if only directory path is entered, cd there.
setopt interactive_comments # allow typing comments in line setopt interactive_comments # allow typing comments in line
setopt rm_star_silent # (don't) Ensure the user wants to execute 'rm *' setopt no_rm_star_silent # Ensure the user wants to execute 'rm *'
setopt no_rm_star_wait # (don't) Wait before accepting 'rm *' or 'rm /path/*' setopt rm_star_wait # Wait before accepting 'rm *' or 'rm /path/*'
setopt short_loops # allow things like 'if [ 1=1 ] { echo "okay"}' < https://zsh.sourceforge.io/Doc/Release/Shell-Grammar.html#Alternate-Forms-For-Complex-Commands setopt short_loops # allow things like 'if [ 1=1 ] { echo "okay"}' < https://zsh.sourceforge.io/Doc/Release/Shell-Grammar.html#Alternate-Forms-For-Complex-Commands
setopt pipe_fail # When a pipe fails, show the non-0 exit code for the exit code setopt pipe_fail # When a pipe fails, show the non-0 exit code for the exit code