.zshrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# zplug | |
source ~/.zplug/init.zsh | |
# theme | |
zplug romkatv/powerlevel10k, as:theme, depth:1 | |
# 補完の強化 | |
zplug "zsh-users/zsh-completions" | |
# 履歴補完の強化 | |
zplug "zsh-users/zsh-autosuggestions" | |
# ここまでに書いたプラグインのロード | |
zplug load --verbose | |
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. | |
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh | |
# anyenv | |
export PATH="$HOME/.anyenv/bin:$PATH" | |
eval "$(anyenv init -)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment