plugins (872B)
1 #!/bin/zsh 2 3 # ~/.config/zsh/plugins/twitch 4 if [[ -f $HOME/.config/zsh/plugins/twitch ]]; then 5 . $HOME/.config/zsh/plugins/twitch 6 fi 7 8 # https://github.com/hlissner/zsh-autopair 9 if [[ -f $HOME/.config/zsh/plugins/zsh-autopair/autopair.zsh ]]; then 10 . $HOME/.config/zsh/plugins/zsh-autopair/autopair.zsh 11 fi 12 13 # https://github.com/zsh-users/zsh-autosuggestions 14 export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=#eca28f,bold" 15 16 if [[ -f $HOME/.config/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh ]]; then 17 . $HOME/.config/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh 18 fi 19 20 # https://github.com/larkery/zsh-histdb 21 source $HOME/.config/zsh/plugins/zsh-histdb/sqlite-history.zsh 22 source $HOME/.config/zsh/plugins/zsh-histdb/histdb-interactive.zsh 23 autoload -Uz add-zsh-hook 24 bindkey '^r' _histdb-isearch 25 26 # https://github.com/ajeetdsouza/zoxide 27 eval "$(zoxide init zsh)"