misc.zsh 733 Bytes
Newer Older
1
autoload -Uz is-at-least
2
3
4

# *-magic is known buggy in some versions; disable if so
if [[ $DISABLE_MAGIC_FUNCTIONS != true ]]; then
5
6
7
8
9
10
11
12
13
14
15
16
  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
James Cox's avatar
James Cox committed
17

18
## jobs
19
setopt long_list_jobs
20

21
22
env_default 'PAGER' 'less'
env_default 'LESS' '-R'
23

24
## super user alias
25
alias _='sudo '
26
27

## more intelligent acking for ubuntu users
28
if which ack-grep &> /dev/null; then
29
30
31
32
  alias afind='ack-grep -il'
else
  alias afind='ack -il'
fi
frozen_dude's avatar
frozen_dude committed
33

Tejas Bubane's avatar
Tejas Bubane committed
34
35
# recognize comments
setopt interactivecomments