I am using the vim plugin for IntelliJ Idea.
Where should I place the .vimrc for that plugin.
Using Windows XP
相关问题
- Configure gradle plugin based on future tasks
- How to make available “open this project in Intell
- Emacs shell: save commit message
- IntelliJ 2017.1.2 GOLANG debug does not work on br
- JavaFX sample issue
相关文章
- 如何让 vim 支持 .cshtml 文件的代码高亮
- In IntelliJ IDEA, how can I create a key binding t
- Auto-save in VIM as you type
- IntelliJ IDEA can't open projects or add SDK o
- How can I use gcc's -I command to add recursiv
- IntelliJ Subversion Authentication Required Dialog
- Vim: overloaded mapping for multiple modes
- Kotlin Koans with EduTools plugin: “Failed to laun
.vimrc typically belongs in your home directory (for your personal configurations).
The latest version of the plugin will read settings from ~/.ideavimrc
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.If you rename your
.vimrc
to_ideavimrc
in your ~ directory (/Users/ in windows)Underscore is used instead of the
.
in windows for vim apparentlyIntelliJ will honour it
Was tearing my hair out for a while getting this to work.
gives me my "home directory" on Windows XP,
where I need to put my .vimrc.