zsh/35-options.zsh

27 lines
752 B
Bash
Raw Normal View History

setopt AUTO_PUSHD # Push the current directory visited on the stack.
setopt PUSHD_IGNORE_DUPS # Do not store duplicates in the stack.
setopt PUSHD_SILENT # Do not print the directory stack after pushd or popd.
2021-12-06 21:48:22 +00:00
autoload -Uz allopt zed zmv zcalc colors is-at-least
2021-07-13 13:17:09 +00:00
colors
2018-11-17 16:59:31 +00:00
zmodload zsh/terminfo
2021-07-13 13:17:09 +00:00
autoload -Uz edit-command-line
zle -N edit-command-line
#bindkey -M vicmd v edit-command-line
2018-11-17 16:59:31 +00:00
2021-07-13 13:17:09 +00:00
autoload -Uz select-word-style
select-word-style shell
2021-12-06 21:48:22 +00:00
if is-at-least 5.1; then
autoload -Uz bracketed-paste-magic
zle -N bracketed-paste bracketed-paste-magic
fi
2021-07-13 13:17:09 +00:00
autoload -Uz url-quote-magic
zle -N self-insert url-quote-magic
2021-12-07 10:19:06 +00:00
# Подсветка вывода основных команд
[[ -r /etc/grc.zsh ]] && source /etc/grc.zsh