0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/lib/misc.zsh

20 lines
306 B
Bash
Raw Normal View History

2009-09-23 01:45:15 +02:00
## smart urls
autoload -U url-quote-magic
zle -N self-insert url-quote-magic
## jobs
setopt long_list_jobs
## pager
export PAGER="less"
export LESS="-R"
2010-10-11 21:19:23 +02:00
export LC_CTYPE=$LANG
## super user alias
alias _='sudo'
alias please='sudo'
## more intelligent acking for ubuntu users
alias afind='ack-grep -il'