mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
14 lines
290 B
Bash
14 lines
290 B
Bash
## smart urls
|
|
if [ -f "/usr/share/zsh/functions/Zle/url-quote-magic" ] ; then
|
|
autoload -U url-quote-magic && zle -N self-insert url-quote-magic
|
|
fi
|
|
|
|
## file rename magick
|
|
bindkey "^[m" copy-prev-shell-word
|
|
|
|
## jobs
|
|
setopt long_list_jobs
|
|
|
|
## pager
|
|
export PAGER=less
|
|
export LC_CTYPE=$LANG
|