summaryrefslogtreecommitdiff
path: root/lib/misc.zsh
blob: 8d6727251a73ae3456600195a71eeb29aebdef2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
## smart urls
autoload -U url-quote-magic
zle -N self-insert url-quote-magic

## file rename magick
bindkey "^[m" copy-prev-shell-word

## jobs
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