mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-05 01:46:46 +01:00
19 lines
No EOL
318 B
Bash
19 lines
No EOL
318 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 -R'
|
|
export LC_CTYPE=en_US.UTF-8
|
|
|
|
## pretty man pages
|
|
function pman() {
|
|
man $1 -t | open -f -a Preview
|
|
} |