X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fskel%2F.zshrc;h=1a318670c9d9ac8bef0d0e1d1ca5590470d7a327;hb=e450b32aa21bafe38ddd3bf1a6d97339b8a7e622;hp=b48a9b9e010442e4dcd2b2917fcac22c10a8add8;hpb=344a5c51384fc3acead84167c96a0acfc61be474;p=grml-etc-core.git diff --git a/etc/skel/.zshrc b/etc/skel/.zshrc index b48a9b9..1a31867 100644 --- a/etc/skel/.zshrc +++ b/etc/skel/.zshrc @@ -30,6 +30,13 @@ if [ -r ~/.zshrc -a -r ~/.zshrc.global -a ! -r ~/.zshrc.local ] ; then printf '-!-\n' fi +## Settings for umask +#if (( EUID == 0 )); then +# umask 002 +#else +# umask 022 +#fi + ## Now, we'll give a few examples of what you might want to use in your ## .zshrc.local file (just copy'n'paste and uncomment it there): @@ -64,20 +71,24 @@ fi #WORDCHARS='*?_[]~=&;!#$%^(){}' #WORDCHARS='${WORDCHARS:s@/@}' -# just type 'cd ...' to get 'cd ../..' +# just type '...' to get '../..' #rationalise-dot() { -# if [[ $LBUFFER == *.. ]] ; then -# LBUFFER+=/.. -# else -# LBUFFER+=. -# fi +#local MATCH +#if [[ $LBUFFER =~ '(^|/| | |'$'\n''|\||;|&)\.\.$' ]]; then +# LBUFFER+=/ +# zle self-insert +# zle self-insert +#else +# zle self-insert +#fi #} #zle -N rationalise-dot #bindkey . rationalise-dot +## without this, typing a . aborts incremental history search +#bindkey -M isearch . self-insert #bindkey '\eq' push-line-or-edit - ## some popular options ## ## add `|' to output redirections in the history @@ -183,6 +194,19 @@ fi # exec $SHELL $SHELL_ARGS "$@" #} +## get_ic() - queries imap servers for capabilities; real simple. no imaps +#ic_get() { +# emulate -L zsh +# local port +# if [[ ! -z $1 ]] ; then +# port=${2:-143} +# print "querying imap server on $1:${port}...\n"; +# print "a1 capability\na2 logout\n" | nc $1 ${port} +# else +# print "usage:\n $0 [port]" +# fi +#} + ## log out? set timeout in seconds... ## ...and do not log out in some specific terminals: #if [[ "${TERM}" == ([Exa]term*|rxvt|dtterm|screen*) ]] ; then