mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 21:39:48 +01:00
101149b1ae
There were only three aliases left in aliases.zsh File deleted!
22 lines
364 B
Bash
22 lines
364 B
Bash
## smart urls
|
|
autoload -U url-quote-magic
|
|
zle -N self-insert url-quote-magic
|
|
|
|
## file rename magick
|
|
bindkey "^[m" copy-prev-shell-word
|
|
|
|
## jobs
|
|
setopt long_list_jobs
|
|
|
|
## pager
|
|
export PAGER="less"
|
|
export LESS="-R"
|
|
|
|
export LC_CTYPE=$LANG
|
|
|
|
## super user alias
|
|
alias _='sudo'
|
|
alias please='sudo'
|
|
|
|
## more intelligent acking for ubuntu users
|
|
alias afind='ack-grep -il'
|