23 lines
547 B
Bash
23 lines
547 B
Bash
# plugins.zsh — enable oh-my-zsh builtins + external plugins (cloned by the
|
|
# shell-zsh module into $ZSH_CUSTOM/plugins).
|
|
|
|
plugins=(
|
|
git
|
|
sudo
|
|
command-not-found
|
|
colored-man-pages
|
|
extract
|
|
copypath
|
|
dirhistory
|
|
zsh-autosuggestions
|
|
zsh-syntax-highlighting # must be last among syntax plugins
|
|
history-substring-search
|
|
fzf-tab
|
|
zsh-completions
|
|
)
|
|
|
|
source "$ZSH/oh-my-zsh.sh"
|
|
|
|
# history-substring-search keybindings (after omz is loaded)
|
|
bindkey '^[[A' history-substring-search-up
|
|
bindkey '^[[B' history-substring-search-down |