You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
309 B
17 lines
309 B
## 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
|
|
|