conf2/zsh/.oh-my-zsh/lib/misc.zsh

36 lines
746 B
Bash
Raw Normal View History

2019-01-12 15:47:23 +00:00
autoload -Uz is-at-least
2019-10-24 19:09:05 +00:00
# *-magic is known buggy in some versions; disable if so
if [[ $DISABLE_MAGIC_FUNCTIONS != true ]]; then
2019-01-12 15:47:23 +00:00
for d in $fpath; do
2020-06-11 14:41:32 +00: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
2019-01-12 15:47:23 +00:00
done
fi
## jobs
setopt long_list_jobs
env_default 'PAGER' 'less'
env_default 'LESS' '-R'
## super user alias
2019-10-24 19:09:05 +00:00
alias _='sudo '
2019-01-12 15:47:23 +00:00
## more intelligent acking for ubuntu users
2020-06-11 14:41:32 +00:00
if (( $+commands[ack-grep] )); then
2019-01-12 15:47:23 +00:00
alias afind='ack-grep -il'
else
alias afind='ack -il'
fi
# recognize comments
setopt interactivecomments