使.zshrc生效时,报错:
一、摘出关键报错信息:
no such file or directory: /Users/lily/.oh-my-zsh/custom/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh^M
二、报错原因分析:
说是找不到zsh-autosuggestions.zsh这个文件,但明明这个文件是存在的。是谁对mac用了致盲技能导致它眼瞎了吗,不,它只是无法识别,也就是说zsh-autosuggestions.zsh文件里可能存在了隐藏字符^M,导致它认不出来该文件。
在 you are about to commit crlf line separators to the git repository 解决办法 这篇博客中,为了能git提交代码,我做了这个设置git config --global core.autocrlf true
,这意思是 提交时转换为LF,检出时转换为CRLF,而CRLF是Windows的换行符。
也就是说git clone下载这插件时,git是按照windows的标准进行clone的,导致mac 无法识别,报这个 ^M的标识。
三、解决方法:
那我们重新来设置一下:
git config --global core.autocrlf input
重新 clone这插件,并source .zshrc
,从红线处可知,该插件已经生效。
参考:
https://blog.csdn.net/wdd1324/article/details/84963919
https://mirrors.edge.kernel.org/pub/software/scm/git/docs/git-config.html
https://mirrors.edge.kernel.org/pub/software/scm/git/docs/gitattributes.html
大功告成!