linux环境下source vimrc提示错误unexpected token `"autocmd"'

时间:2024-08-29 12:06:02

编辑完vimrc之后,使用source /etc/vimrc之后报错:

$ source /etc/vimrc
bash: /etc/vimrc: line 15: syntax error near unexpected token `"autocmd"'
bash: /etc/vimrc: line 15: `if has("autocmd")'

主要是因为:

vimrc是vim起动时解释的,而不是由shell来解释。用shell来source它肯定不行

解决办法:其实根本不用source等任何操作,使用vi时候自动读取配置,,如果还是没有生效,那么久拷贝一个vimrc到你的目录(HOME或者WORK目录即可)下,命名为 .vimrc即可