Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.vimrc for IntelliJ Idea's vim plugin

I am using the vim plugin for IntelliJ Idea.
Where should I place the .vimrc for that plugin.
Using Windows XP

like image 582
simplfuzz Avatar asked Jun 29 '10 08:06

simplfuzz


People also ask

How good is IdeaVim?

IdeaVim is great, but it is still just a substitute for the 'Real Thing'. There are a couple of issues and problems, some of which can be worked around. For one IdeaVim is limited in its functionality. Plugins and various commands that you would know from Vim simply won't work.

Does PyCharm have Vim?

Both Vim and PyCharm are keyboard-centric. Your keymap in PyCharm may conflict with Vim's key combinations. To resolve this, select the shortcuts you prefer for different actions. In the Settings/Preferences dialog ( Ctrl+Alt+S ), select Editor | Vim Emulation.


1 Answers

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.)

like image 85
Evan Avatar answered Sep 19 '22 14:09

Evan