2009-09-23 01:45:15 +02:00
|
|
|
## smart urls
|
|
|
|
autoload -U url-quote-magic
|
|
|
|
zle -N self-insert url-quote-magic
|
|
|
|
|
|
|
|
## file rename magick
|
2009-09-23 02:18:15 +02:00
|
|
|
bindkey "^[m" copy-prev-shell-word
|
|
|
|
|
|
|
|
## jobs
|
2009-09-24 02:12:19 +02:00
|
|
|
setopt long_list_jobs
|
|
|
|
|
|
|
|
# Check for updates on initial load...
|
|
|
|
if [ "$DISABLE_AUTO_UPDATE" = "true" ]
|
|
|
|
then
|
|
|
|
return
|
|
|
|
else
|
|
|
|
/bin/sh $ZSH/tools/check_for_upgrade.sh
|
|
|
|
fi
|