misc.zsh 309 B

1234567891011121314151617
  1. ## smart urls
  2. autoload -U url-quote-magic
  3. zle -N self-insert url-quote-magic
  4. ## file rename magick
  5. bindkey "^[m" copy-prev-shell-word
  6. ## jobs
  7. setopt long_list_jobs
  8. # Check for updates on initial load...
  9. if [ "$DISABLE_AUTO_UPDATE" = "true" ]
  10. then
  11. return
  12. else
  13. /bin/sh $ZSH/tools/check_for_upgrade.sh
  14. fi