mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +01:00
Conflicts: .gitignore README.textile lib/aliases.zsh lib/functions.zsh lib/git.zsh lib/misc.zsh templates/zshrc.zsh-template tools/install.sh
14 lines
232 B
Bash
14 lines
232 B
Bash
## smart urls
|
|
autoload -U url-quote-magic
|
|
zle -N self-insert url-quote-magic
|
|
|
|
## file rename magick
|
|
autoload -U zmv
|
|
bindkey "^[m" copy-prev-shell-word
|
|
|
|
## jobs
|
|
setopt long_list_jobs
|
|
|
|
## pager
|
|
export PAGER=less
|
|
export LC_CTYPE=$LANG
|