misc.zsh 779 Bytes
Newer Older
1
2
## Load smart urls if available
for d in $fpath; do
3
	if [[ -e "$d/url-quote-magic" ]]; then
4
5
6
7
		if [[ -e "$d/bracketed-paste-magic" ]]; then
			autoload -Uz bracketed-paste-magic
			zle -N bracketed-paste bracketed-paste-magic
		fi
8
9
10
11
		autoload -U url-quote-magic
		zle -N self-insert url-quote-magic
	fi
done
James Cox's avatar
James Cox committed
12

13
## jobs
14
setopt long_list_jobs
15
16

## pager
17
18
19
export PAGER="less"
export LESS="-R"

20
21
22
23
24
## super user alias
alias _='sudo'
alias please='sudo'

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

32
33
34
# only define LC_CTYPE if undefined
if [[ -z "$LC_CTYPE" && -z "$LC_ALL" ]]; then
	export LC_CTYPE=${LANG%%:*} # pick the first entry from LANG
frozen_dude's avatar
frozen_dude committed
35
fi
Tejas Bubane's avatar
Tejas Bubane committed
36
37
38

# recognize comments
setopt interactivecomments