etc/skel/.zshrc: suggest J as global alias for jq usage
[grml-etc-core.git] / etc / skel / .zshrc
index ddb49c0..948fd37 100644 (file)
@@ -104,6 +104,9 @@ fi
 ## add `|' to output redirections in the history
 #setopt histallowclobber
 
+## try to avoid the 'zsh: no matches found...'
+#setopt nonomatch
+
 ## warning if file exists ('cat /dev/null > ~/.zshrc')
 #setopt NO_clobber
 
@@ -119,6 +122,9 @@ fi
 ## Allow comments even in interactive shells
 #setopt interactivecomments
 
+## if a new command line being added to the history list duplicates an older
+## one, the older command is removed from the list
+#is4 && setopt histignorealldups
 
 ## compsys related snippets ##
 
@@ -178,6 +184,7 @@ fi
 #alias -g G='|grep'
 #alias -g H='|head'
 #alias -g Hl=' --help |& less -r'
+#alias -g J='|jq'
 #alias -g K='|keep'
 #alias -g L='|less'
 #alias -g LL='|& less -r'