mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
13 lines
262 B
Bash
13 lines
262 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
|
|
PAGER=${PAGER:-less}; export PAGER
|
|
LC_CTYPE=${LC_CTYPE:-en_US.UTF-8}; export LC_CTYPE
|