2018-11-18 17:59:08 +00:00
|
|
|
# https://github.com/wting/autojump
|
|
|
|
# apt-get install autojump
|
|
|
|
[[ -s /usr/share/autojump/autojump.sh ]] && source /usr/share/autojump/autojump.sh
|
|
|
|
|
2021-11-06 16:50:38 +00:00
|
|
|
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-07-13 13:17:09 +00:00
|
|
|
autoload -Uz allopt zed zmv zcalc colors
|
|
|
|
colors
|
2018-11-17 16:59:31 +00:00
|
|
|
|
2021-11-06 16:50:38 +00:00
|
|
|
zmodload zsh/terminfo
|
|
|
|
|
2021-07-13 13:17:09 +00:00
|
|
|
autoload -Uz edit-command-line
|
|
|
|
zle -N edit-command-line
|
2021-11-06 16:50:38 +00:00
|
|
|
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-03-11 09:08:10 +00:00
|
|
|
|
2021-07-13 13:17:09 +00:00
|
|
|
autoload -Uz url-quote-magic
|
|
|
|
zle -N self-insert url-quote-magic
|
2021-11-06 16:50:38 +00:00
|
|
|
|