前提・実現したいこと
rbenv local(global) x.x.x
でrubyのバージョンを切り替えたいが、 source ~/.zshrc
でエラーが解消できません。
実現したいこと
source ~/.zshrc
を実行したい。
発生している問題・エラーメッセージ
rbenvでバージョン切り替えができるように、PATHを通すために、zshrcに
[[ -d ~/.rbenv ]] && \ export PATH=${HOME}/.rbenv/bin:${PATH} && \ eval "$(rbenv init -)"
を記述して、source ~/.zshrc
を実行したら、以下のエラーが出ました。
.zpreztorc:42: command not found: autosuggestions pmodload: no such module:
zshのフレームワークpreztoを使用しています。
エラーの該当箇所は、以下になっています。
# Set the Zsh modules to load (man zshmodules). # zstyle ':prezto:load' zmodule 'attr' 'stat' # Set the Zsh functions to load (man zshcontrib). # zstyle ':prezto:load' zfunction 'zargs' 'zmv' # Set the Prezto modules to load (browse modules). # The order matters. zstyle ':prezto:load' pmodule \ 'environment' \ 'terminal' \ 'editor' \ 'history' \ 'directory' \ 'spectrum' \ 'utility' \ 'completion' \ 'syntax-highlighting' \ 'autosuggestions' \ 'history-substring-search' \ 'prompt' # # Autosuggestions # zstyle ':prezto:module:autosuggestions' color 'yes' # Set the query found color. zstyle ':prezto:module:autosuggestions:color' found ''
試したこと
autosuggestionsが問題だろうと、様々な記事を参考にして、成功している方と記述を追加しました。
zstyle ':prezto:module:autosuggestions' color 'yes'
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。