.vimrc for IntelliJ Idea's vim plugin

天大地大妈咪最大 提交于 2019-11-30 05:41:56
Evan

The latest version of the plugin will read settings from a file named .ideavimrc in the home directory.

On *nix, the home directory can be accessed at ~.

On Windows, you can use the %HOMEPATH% environment variable. (Normally, "C:\Users\<User Name>" or "C:\Documents and Settings\<User Name>", depending on your Windows version.)

If you rename your .vimrc to _ideavimrc in your ~ directory (/Users/ in windows)

Underscore is used instead of the . in windows for vim apparently

IntelliJ will honour it

Was tearing my hair out for a while getting this to work.

echo %homepath%  

gives me my "home directory" on Windows XP,
where I need to put my .vimrc.

On my mac i simply ran ln -s "$HOME/.vimrc" "$HOME/.ideavimrc" to create a symlink so IntelliJ would use the same .vimrc as my standard vim.

My .vimrc is very simple. However, if there is config that is incompatible between IntelliJ and vim then you might have issues with this approach.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!