2015-10-06 18:03:47 -07:00
|
|
|
autoload -Uz is-at-least
|
2019-05-11 04:42:38 -07:00
|
|
|
|
|
|
|
# *-magic is known buggy in some versions; disable if so
|
|
|
|
if [[ $DISABLE_MAGIC_FUNCTIONS != true ]]; then
|
2015-10-06 18:03:47 -07:00
|
|
|
for d in $fpath; do
|
|
|
|
if [[ -e "$d/url-quote-magic" ]]; then
|
|
|
|
if is-at-least 5.1; then
|
|
|
|
autoload -Uz bracketed-paste-magic
|
|
|
|
zle -N bracketed-paste bracketed-paste-magic
|
|
|
|
fi
|
|
|
|
autoload -Uz url-quote-magic
|
|
|
|
zle -N self-insert url-quote-magic
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
2009-09-22 16:45:15 -07:00
|
|
|
|
2009-09-22 17:18:15 -07:00
|
|
|
## jobs
|
2009-09-23 17:12:19 -07:00
|
|
|
setopt long_list_jobs
|
2009-11-04 12:37:18 -07:00
|
|
|
|
2018-09-09 10:50:23 -07:00
|
|
|
env_default 'PAGER' 'less'
|
|
|
|
env_default 'LESS' '-R'
|
2012-10-13 13:53:34 -07:00
|
|
|
|
2014-01-10 15:53:14 -07:00
|
|
|
## super user alias
|
|
|
|
alias _='sudo'
|
|
|
|
|
|
|
|
## more intelligent acking for ubuntu users
|
2015-10-06 18:03:47 -07:00
|
|
|
if which ack-grep &> /dev/null; then
|
2015-07-10 18:32:05 -07:00
|
|
|
alias afind='ack-grep -il'
|
|
|
|
else
|
|
|
|
alias afind='ack -il'
|
|
|
|
fi
|
2013-07-29 11:04:23 -07:00
|
|
|
|
2015-02-09 10:57:23 -07:00
|
|
|
# only define LC_CTYPE if undefined
|
|
|
|
if [[ -z "$LC_CTYPE" && -z "$LC_ALL" ]]; then
|
|
|
|
export LC_CTYPE=${LANG%%:*} # pick the first entry from LANG
|
2013-07-29 11:04:23 -07:00
|
|
|
fi
|
2014-12-23 00:18:09 -07:00
|
|
|
|
|
|
|
# recognize comments
|
|
|
|
setopt interactivecomments
|