dotfiles 動かなくなったので .zshrc 作り直す
プラグインマネージャー使うのめんどくさくなってきたので、自分で適当にやる
最低限欲しいのはこのへん
あとこのへん?なんか antigen 使ってたとき勝手に効いてた気がするのでいれたことなかった
code:sh
$ mkdir -p "$HOME/.zsh" && cd $_
$ mkdir -p "$HOME/.zsh/completions" && cd $_
code:.zshrc
# ~/.zshrc: executed by zsh for non-login shells.
export ZHOME="$HOME/.zsh"
fpath+=(
$ZHOME/zsh-completions/src
$ZHOME/completions
$ZHOME/pure
)
source "$ZHOME/zsh-autosuggestions/zsh-autosuggestions.zsh"
source "$ZHOME/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
source "$ZHOME/zsh-history-substring-search/zsh-history-substring-search.zsh"
bindkey '^[[A' history-substring-search-up
bindkey '^[[B' history-substring-search-down
autoload -U promptinit; promptinit
prompt pure
setopt nobeep