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

9
## jobs
10
setopt long_list_jobs
11
12

## pager
13
14
15
export PAGER="less"
export LESS="-R"

16
17
18
19
20
21
## super user alias
alias _='sudo'
alias please='sudo'

## more intelligent acking for ubuntu users
alias afind='ack-grep -il'
frozen_dude's avatar
frozen_dude committed
22

23
24
25
# 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
26
fi
Tejas Bubane's avatar
Tejas Bubane committed
27
28
29

# recognize comments
setopt interactivecomments