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
|
2020-04-05 12:34:53 -07:00
|
|
|
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
|
2015-10-06 18:03:47 -07:00
|
|
|
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
|
2019-10-16 09:01:15 -07:00
|
|
|
alias _='sudo '
|
2014-01-10 15:53:14 -07:00
|
|
|
|
2022-07-12 10:36:43 -07:00
|
|
|
## more intelligent acking for ubuntu users and no alias for users without ack
|
2020-04-05 12:34:53 -07:00
|
|
|
if (( $+commands[ack-grep] )); then
|
2015-07-10 18:32:05 -07:00
|
|
|
alias afind='ack-grep -il'
|
2022-07-12 10:36:43 -07:00
|
|
|
elif (( $+commands[ack] )); then
|
2015-07-10 18:32:05 -07:00
|
|
|
alias afind='ack -il'
|
|
|
|
fi
|
2013-07-29 11:04:23 -07:00
|
|
|
|
2014-12-23 00:18:09 -07:00
|
|
|
# recognize comments
|
|
|
|
setopt interactivecomments
|